mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 00:09:41 +00:00
Added CENTRE alias to CENTER.
This commit is contained in:
parent
700a321303
commit
247d526962
1 changed files with 6 additions and 1 deletions
|
@ -98,6 +98,10 @@ $slop = 0.0;
|
|||
// Constant: INCH
|
||||
// Description:
|
||||
// The number of millimeters in an inch.
|
||||
// Example(2D):
|
||||
// square(2*INCH, center=true);
|
||||
// Example(3D):
|
||||
// cube([4,3,2.5]*INCH, center=true);
|
||||
INCH = 25.4;
|
||||
|
||||
|
||||
|
@ -162,7 +166,7 @@ TOP = [ 0, 0, 1];
|
|||
UP = TOP;
|
||||
|
||||
// Constant: CENTER
|
||||
// Aliases: CTR
|
||||
// Aliases: CTR, CENTRE
|
||||
// Topics: Constants, Vectors
|
||||
// See Also: LEFT, RIGHT, FRONT, BACK, UP, DOWN
|
||||
// Description: Zero vector. Centered. [0,0,0]
|
||||
|
@ -170,6 +174,7 @@ UP = TOP;
|
|||
// cuboid(20, anchor=CENTER);
|
||||
CENTER = [ 0, 0, 0]; // Centered zero vector.
|
||||
CTR = CENTER;
|
||||
CENTRE = CENTER;
|
||||
|
||||
|
||||
// Section: Line specifiers
|
||||
|
|
Loading…
Reference in a new issue