lineparallel lipa
Creates a line parallel to another line.
Creates a line from a point (which may either exist, or will be created) parallel to an existing line with the same length.
lineparallel Point_3 Line_1
Creates a line from Point_3 parallel to Line_1 with the same length and direction as Line_1. If Line_1 is from (0, 0, 0) to (3, 0, 4), the new line starts at Point_3 (0, 1, 0) and goes to a new point at (3, 1, 4).
<Point'|<Coords: Number' Number' Number'>'> Line'
Point | Point object reference | Name of the point from which the line should be created |
Coords | Coordinates | |
Number | x | x-coordinate |
Number | y | y-coordinate |
Number | z | z-coordinate |
Line | Line object reference | Name of the line to which the line should be parallel |
Mode | Target |
---|---|
Geometry | Global |
Creates a line from a point (which may either exist, or will be created) parallel to an existing line with a specified length.
lineparallel 0 1 0 Line_1 10
Creates a line from a new point with coordinates (0, 1, 0) parallel to Line_1 with a length of 10. If Line_1 is from (0, 0, 0) to (3, 0, 4), the new line goes from (0, 1, 0) to (6, 1, 8).
<Point'|<Coords: Number' Number' Number'>'> Line' Number
Point | Point object reference | Name of the point from which the line should be created |
Coords | Coordinates | |
Number | x | x-coordinate |
Number | y | y-coordinate |
Number | z | z-coordinate |
Line | Line object reference | Name of the line to which the line should be parallel |
Number | Length | The length of the line that should be created |
Mode | Target |
---|---|
Geometry | Global |