diff --git a/doc/cheatsheet/cadquery_cheatsheet.html b/doc/cheatsheet/cadquery_cheatsheet.html index f164387..bb58252 100644 --- a/doc/cheatsheet/cadquery_cheatsheet.html +++ b/doc/cheatsheet/cadquery_cheatsheet.html @@ -136,6 +136,27 @@ +
+

Core Classes


+ + + + + + + + + + + + + + + + + +
ClassDescription
CQ(obj)Provides enhanced functionality for a wrapped CAD primitive.
Plane(origin, xDir, normal)A 2d coordinate system in space, with the x-y axes on the a plane, and a particular point as the origin.
Workplane(inPlane[origin, obj])Defines a coordinate system in space, in which 2-d coordinates can be used.
+
@@ -168,6 +189,43 @@
+
+

Selector Classes


+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ClassDescription
NearestToPointSelector(pnt)Selects object nearest the provided point.
ParallelDirSelector(vector[tolerance])Selects objects parallel with the provided direction.
DirectionSelector(vector[tolerance])Selects objects aligned with the provided direction.
PerpendicularDirSelector(vector[tolerance])Selects objects perpendicular with the provided direction.
TypeSelector(typeString)Selects objects of the prescribed topological type.
DirectionMinMaxSelector(vector[directionMax])Selects objects closest or farthest in the specified direction.
StringSyntaxSelector(selectorString)Filter lists objects using a simple string syntax.
+

Selector String Modifiers


Selectors are a complex topic: see CadQuery String Selectors for more information.