line li
Creates a line.
Creates a line between two points.
line (5 6) (8 9)
Creates a line from coordinates (5, 6) to (8, 9).
line (1 2) Point_1
Creates a line from coordinates (1, 2) to Point_1.
line Point_14 (8 4)
Creates a line from Point_14 to coordinates (8, 4).
line Point_6 Point_4
Creates a line from Point_6 to Point_4.
<Point'|<Coords: Number' Number'>'> <Point'|<Coords: Number' Number'>'>
Point | Point object reference | Name of the point from which the line should start |
Coords | Coordinates of the point from which the line should start | |
Number | x | x-coordinate |
Number | y | y-coordinate |
Point | Point object reference | Name of the point at which the line should end |
Coords | Coordinates of the point at which the line should end | |
Number | x | x-coordinate |
Number | y | y-coordinate |
Mode | Target |
---|---|
Geometry | Global |
Creates a line between two or more points.
line Point_1 Point_2 Point_3
Creates a line from Point_1 to Point_2 and another line from Point_2 to Point_3.
line Point_5 (1 2) Point_6
Creates a line from Point_5 to coordinates (1, 2) and from that point another line to Point_6.
line (1 0) (9 4) (8 6) Point_8
Creates a line from coordinates (1, 0) to coordinates (9, 4), from that point another line to coordinates (8, 6) and from that point another line to Point_8.
<Point{3,...}: <Point'|<Coords: Number' Number'>'>>
Point{3,...} 3 ∞ | Sequence of three or more points | |
Point | Point object reference | Names of the points which define the lines that should be created |
Coords | Coordinates of the points which define the lines that should be created | |
Number | x | x-coordinate |
Number | y | y-coordinate |
Mode | Target |
---|---|
Geometry | Global |
Creates one or more lines by either giving absolute coordinates or relative coordinates, by giving the angle with respect to the xy-plane and a length or a vector describing the direction and a length.
line 1 2 "relative" 3 4
Creates a line from a new point with coordinates (1, 2) to another new point which is 3 in the x- and 4 in the y-direction from the first point at (4, 6).
line Point_1 "relative" 3 4 -5 -9 "angles" 30 16
Creates a line from Point_1 (1, 2) to a new point which is 3 in the x- and 4 in the y-direction from the first point at (4, 6). From that new point a line is created to another new point which is -5 in the x- and -9 in the y-direction from the previous point at (-1, -3). From that point a new line is created which has an angle of 30 degrees with respect to the xy-plane and a length of 16. This line ends at coordinates (12.86, 5).
line (1 2) "angles" 45 10 "absolute" (4 5)
Creates a line from a new point with coordinates (1, 2) which has an angle of 45 degrees with respect to the xy-plane and a length of 10. Then creates a line from the end point of the first line to a new point with coordinates (4, 5).
line (1 2) "angles" 45 10 "vector" (8 2) 14
Creates a line from a new point with coordinates (1, 2) which has an angle of 45 degrees with respect to the xy-plane and a length of 10. Then creates a line from the end point of the first line in direction (8, 2) with a length of 14.
<Point'|<Coords: Number' Number'>'> <{1,...}: <<<Text: "absolute"> <Point{1,...}: <Point'|<Coords: Number' Number'>'>>>|<<Text: "angles"> <{1,...}: <Number'(°) <Number'|<Line'>>>'>>|<<Text: "relative"> <Coords{1,...}: <Coords: Number' Number'>'>>|<<Text: "vector"> <{1,...}: <<Coords: Number' Number'>' <Number'|<Line'>>>'>'>>>
Point | Point object reference | Point from which the line must start |
Coords | Coordinates | |
Number | x | x-coordinate |
Number | y | y-coordinate |
{1,...} 1 ∞ | Sequence of one or more line sub-commands | |
Text | "absolute" | Create a line by giving absolute coordinates |
Point{1,...} 1 ∞ | Sequence of one or more points | |
Point | Point object reference | Point where the line ends |
Coords | Coordinates of the point where the line ends | |
Number | x | x-coordinate |
Number | y | y-coordinate |
Text | "angles" | Create one or more lines by giving an angle and a length per line |
{1,...} 1 ∞ | Sequence of one or more specifications of angles and length of the line or object to which the line should snap | |
Number | Angle | Angle of the line with respect to the xy-plane |
Number | Length | Length of the line that should be created |
Line | Line object reference | Name of the line to which the created line should snap |
Text | "relative" | Create one or more lines by giving relative coordinates |
Coords{1,...} 1 ∞ | Sequence of one or more coordinates | |
Coords | Coordinates of the point, relative to the starting point, where the line ends | |
Number | x | x-coordinate |
Number | y | y-coordinate |
Text | "vector" | Create one or more lines by giving a vector and a length or object to which the line should snap per line |
{1,...} 1 ∞ | Sequence of one or more vectors and length of the line or objects to which the line should snap | |
Coords | Vector that defines the direction of the line that should be created | |
Number | x | x-value |
Number | y | y-value |
Number | Length | Length of the line that should be created |
Line | Line object reference | Name of the line to which the created line should snap |
Mode | Target |
---|---|
Geometry | Global |