diff --git a/Scripts/rhinoscript/line.py b/Scripts/rhinoscript/line.py index fc220d7f..277ee734 100644 --- a/Scripts/rhinoscript/line.py +++ b/Scripts/rhinoscript/line.py @@ -262,7 +262,7 @@ def LineTransform(line, xform): line (guid): the line to transform xform (transform): the transformation to apply Returns: - guid: transformed line + Geometry.Line: The transformed line geometry. ( Just the geometry, not a drawn line Object) Example: import rhinoscriptsyntax as rs line = (0,0,0), (10,10,0) @@ -282,4 +282,4 @@ def LineTransform(line, xform): xform = rhutil.coercexform(xform, True) success = line.Transform(xform) if not success: raise Execption("unable to transform line") - return line \ No newline at end of file + return line