We have moved to https://dokuwiki.librecad.org/

Lots of content was already moved to the new wiki, but there is still work to do. If you want to contribute, please register a new account at https://dokuwiki.librecad.org/

This wiki will be kept for a while to keep search engine results valid. Moved sites may be deleted here in future.

Difference between revisions of "Points"

From LibreCAD wiki
Jump to: navigation, search
(added link to page about vector math // added image for rotation // added link to coordinate system page)
(updated to to include information and image of relative zero)
Line 9: Line 9:
 
* '''x,y'''
 
* '''x,y'''
 
<tt>
 
<tt>
: This creates a point at coordinates x,y.
+
: This creates a point at coordinates x,y relative to the origin (0,0).
 
</tt>
 
</tt>
  
 
* '''@x,y'''
 
* '''@x,y'''
 +
: [[Image:Relative_zero.png]] relative zero position
 
<tt>
 
<tt>
: This creates a point located relative to the last point created;  
+
: This creates a point a specified distance from the relative zero position.
: the coordinates are [http://www.mathsisfun.com/algebra/vectors.html added] to the coordinates of the last point created.
+
: The @ symbol means that we want the "relative zero position" to be considered the origin;
 +
: the coordinates are [http://www.mathsisfun.com/algebra/vectors.html added] to the coordinates of the relative zero position.
 
</tt>
 
</tt>
  
Line 26: Line 28:
 
* '''@distance<rotation'''
 
* '''@distance<rotation'''
 
<tt>
 
<tt>
: This creates a point a specified distance from the last point created,  
+
: This creates a point a specified distance from the relative zero position,  
 
: and rotated a specified amount of degrees around that point.
 
: and rotated a specified amount of degrees around that point.
 
</tt>
 
</tt>

Revision as of 00:00, 12 May 2015

Points.png

Commands: po, point

Specify location

Click in the drawing area or use the following syntax with the command line:

  • x,y

This creates a point at coordinates x,y relative to the origin (0,0).

  • @x,y
Relative zero.png relative zero position

This creates a point a specified distance from the relative zero position.
The @ symbol means that we want the "relative zero position" to be considered the origin;
the coordinates are added to the coordinates of the relative zero position.

  • distance<rotation

This creates a point a specified distance from the origin,
and rotated a specified amount of degrees around the origin.

  • @distance<rotation

This creates a point a specified distance from the relative zero position,
and rotated a specified amount of degrees around that point.

Selection 030.png

You can read Coordinate system for more information.