mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-12-07 11:22:07 +00:00
Add topic to various debugging modules
Found a few modules that can more or less only be used for debugging which were missing the "Debugging" topic. Add Debugging topic to: - attachments/anchor_arrow - attachments/anchor_arrow2d - attachments/expose_anchors - attachments/frame_ref - attachments/generic_airplane - attachments/show_anchors - attachments/show_transform_list - drawing/debug_polygon - geometry/show_plane - regions/debug_region
This commit is contained in:
parent
471ea91f4e
commit
3b4ab27a80
4 changed files with 10 additions and 10 deletions
|
|
@ -4470,7 +4470,7 @@ function _standard_anchors(two_d=false) = [
|
|||
// Module: show_anchors()
|
||||
// Synopsis: Shows anchors for the parent object.
|
||||
// SynTags: Geom
|
||||
// Topics: Attachments
|
||||
// Topics: Attachments, Debugging
|
||||
// See Also: expose_anchors(), anchor_arrow(), anchor_arrow2d(), frame_ref()
|
||||
// Usage:
|
||||
// PARENT() show_anchors([s], [std=], [custom=]);
|
||||
|
|
@ -4534,7 +4534,7 @@ module show_anchors(s=10, std=true, custom=true) {
|
|||
// Module: anchor_arrow()
|
||||
// Synopsis: Shows a 3d anchor orientation arrow.
|
||||
// SynTags: Geom
|
||||
// Topics: Attachments
|
||||
// Topics: Attachments, Debugging
|
||||
// See Also: anchor_arrow2d(), show_anchors(), expose_anchors(), frame_ref(), generic_airplane()
|
||||
// Usage:
|
||||
// anchor_arrow([s], [color], [flag], [anchor=], [orient=], [spin=]) [ATTACHMENTS];
|
||||
|
|
@ -4573,7 +4573,7 @@ module anchor_arrow(s=10, color=[0.333,0.333,1], flag=true, $tag="anchor-arrow",
|
|||
// Module: anchor_arrow2d()
|
||||
// Synopsis: Shows a 2d anchor orientation arrow.
|
||||
// SynTags: Geom
|
||||
// Topics: Attachments
|
||||
// Topics: Attachments, Debugging
|
||||
// See Also: anchor_arrow(), show_anchors(), expose_anchors(), frame_ref()
|
||||
// Usage:
|
||||
// anchor_arrow2d([s], [color]);
|
||||
|
|
@ -4592,7 +4592,7 @@ module anchor_arrow2d(s=15, color=[0.333,0.333,1], $tag="anchor-arrow") {
|
|||
|
||||
// Module: expose_anchors()
|
||||
// Synopsis: Used to show a transparent object with solid color anchor arrows.
|
||||
// Topics: Attachments
|
||||
// Topics: Attachments, Debugging
|
||||
// See Also: anchor_arrow2d(), show_anchors(), show_anchors(), frame_ref()
|
||||
// Usage:
|
||||
// expose_anchors(opacity) {child1() show_anchors(); child2() show_anchors(); ...}
|
||||
|
|
@ -4619,7 +4619,7 @@ module expose_anchors(opacity=0.2) {
|
|||
// Module: show_transform_list()
|
||||
// Synopsis: Shows a list of transforms and how they connect.
|
||||
// SynTags: Geom
|
||||
// Topics: Attachments
|
||||
// Topics: Attachments, Debugging
|
||||
// See Also: generic_airplane(), anchor_arrow(), show_anchors(), expose_anchors(), frame_ref()
|
||||
// Usage:
|
||||
// show_transform_list(tlist, [s]);
|
||||
|
|
@ -4666,7 +4666,7 @@ module show_transform_list(tlist, s=5) {
|
|||
// Module: generic_airplane()
|
||||
// Synopsis: Shows a generic airplane shape, useful for viewing orientations.
|
||||
// SynTags: Geom
|
||||
// Topics: Attachments
|
||||
// Topics: Attachments, Debugging
|
||||
// See Also: anchor_arrow(), show_anchors(), expose_anchors(), frame_ref()
|
||||
// Usage:
|
||||
// generic_airplane([s]);
|
||||
|
|
@ -4703,7 +4703,7 @@ module generic_airplane(s=5) {
|
|||
// Module: frame_ref()
|
||||
// Synopsis: Shows axis orientation arrows.
|
||||
// SynTags: Geom
|
||||
// Topics: Attachments
|
||||
// Topics: Attachments, Debugging
|
||||
// See Also: anchor_arrow(), anchor_arrow2d(), show_anchors(), expose_anchors()
|
||||
// Usage:
|
||||
// frame_ref(s, opacity);
|
||||
|
|
|
|||
|
|
@ -1367,7 +1367,7 @@ function _turtle_command(command, parm, parm2, state, index) =
|
|||
// Module: debug_polygon()
|
||||
// Synopsis: Draws an annotated polygon.
|
||||
// SynTags: Geom
|
||||
// Topics: Shapes (2D)
|
||||
// Topics: Shapes (2D), Debugging
|
||||
// See Also: debug_region(), debug_vnf(), debug_bezier()
|
||||
//
|
||||
// Usage:
|
||||
|
|
|
|||
|
|
@ -939,7 +939,7 @@ function _is_point_above_plane(plane, point) =
|
|||
// Module: show_plane()
|
||||
// Synopsis: Display (part of) a plane
|
||||
// SynTags: Geom
|
||||
// Topics: Planes
|
||||
// Topics: Planes, Debugging
|
||||
// Usage:
|
||||
// show_plane(plane, size, [offset]) [ATTACHMENTS];
|
||||
// Description:
|
||||
|
|
|
|||
|
|
@ -371,7 +371,7 @@ module region(r, anchor="origin", spin=0, cp="centroid", atype="hull")
|
|||
// Module: debug_region()
|
||||
// Synopsis: Draws an annotated {{region}}.
|
||||
// SynTags: Geom
|
||||
// Topics: Shapes (2D)
|
||||
// Topics: Shapes (2D), Debugging
|
||||
// See Also: region(), debug_polygon(), debug_vnf(), debug_bezier()
|
||||
//
|
||||
// Usage:
|
||||
|
|
|
|||
Loading…
Reference in a new issue