diff --git a/doc/cheatsheet/cadquery_cheatsheet.html b/doc/cheatsheet/cadquery_cheatsheet.html new file mode 100644 index 0000000..358b0b7 --- /dev/null +++ b/doc/cheatsheet/cadquery_cheatsheet.html @@ -0,0 +1,151 @@ + + + + CadQuery Cheatsheet + + + + + +
+
+

Documentation

+ +
+
+

Named Planes


+ Available named planes are as follows.
+ Direction references refer to the global
+ directions. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NamexDiryDirzDir
XY+x+y+z
YZ+y+z+x
XZ+x+z-y
front+x+y+z
back-x+y-z
left+z+y-x
right-z+y+x
top+x-z+y
bottom+x+z-y
+
+
+
+
+

Selector String Modifiers


+ Selectors are a complex topic: see CadQuery String Selectors for more information.
+ Axis Strings are: X, Y, Z, XY, YZ, XZ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ModifierDescription
|Parallel to (same as ParallelDirSelector). Can return multiple objects.
#Perpendicular to (same as PerpendicularDirSelector)
+Positive direction (same as DirectionSelector)
-Negative direction (same as DirectionSelector)
>Maximize (same as DirectionMinMaxSelector with directionMax=True)
<Minimize (same as DirectionMinMaxSelector with directionMax=False)
%Curve/surface type (same as TypeSelector)
+
+
+ +