Skip to content

Commit

Permalink
Docs Updates continue
Browse files Browse the repository at this point in the history
  • Loading branch information
SpectralVectors committed Jan 27, 2025
1 parent 243b2df commit 87bc0ed
Show file tree
Hide file tree
Showing 20 changed files with 539 additions and 384 deletions.
2 changes: 2 additions & 0 deletions scripts/addons/cam/properties/operation_props.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,7 @@ class CAM_OPERATION_Properties(PropertyGroup):

distance_between_paths: FloatProperty(
name="Distance Between Toolpaths",
description="Distance Between / Overlap of Toolpaths - Linked to Cutter Diameter",
default=0.001,
min=0.00001,
max=32,
Expand All @@ -498,6 +499,7 @@ class CAM_OPERATION_Properties(PropertyGroup):
)
distance_along_paths: FloatProperty(
name="Distance Along Toolpaths",
description="Toolpath Resolution - Details Smaller than this Size Will not be Captured",
default=0.0002,
min=0.00001,
max=32,
Expand Down
22 changes: 11 additions & 11 deletions scripts/addons/cam/ui/panels/op_properties_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ def draw(self, context):
subcol.prop(self.op.movement, "insideout")
box = subcol.box()
sub = box.column(align=True)
sub.label(text="Toolpath Distance")
sub.prop(self.op, "distance_between_paths", text="Between")
sub.label(text="Toolpath")
sub.prop(self.op, "distance_between_paths", text="Stepover")

# Waterline Options
if self.op.strategy in ["WATERLINE"]:
Expand All @@ -118,8 +118,8 @@ def draw(self, context):
if self.op.waterline_fill:
box = col.box()
sub = box.column(align=True)
sub.label(text="Toolpath Distance")
sub.prop(self.op, "distance_between_paths", text="Between")
sub.label(text="Toolpath")
sub.prop(self.op, "distance_between_paths", text="Stepover")

# Carve Options
if self.op.strategy in ["CARVE"]:
Expand All @@ -128,8 +128,8 @@ def draw(self, context):
col.prop(self.op, "skin")
box = col.box()
sub = box.column(align=True)
sub.label(text="Toolpath Distance")
sub.prop(self.op, "distance_along_paths", text="Along")
sub.label(text="Toolpath")
sub.prop(self.op, "distance_along_paths", text="Detail")

# Medial Axis Options
if self.op.strategy in ["MEDIAL_AXIS"]:
Expand Down Expand Up @@ -174,8 +174,8 @@ def draw(self, context):
row.prop(self.op, "pocket_to_curve")
box = col.box()
sub = box.column(align=True)
sub.label(text="Toolpath Distance")
sub.prop(self.op, "distance_between_paths", text="Between")
sub.label(text="Toolpath")
sub.prop(self.op, "distance_between_paths", text="Stepover")

# Default Options
if self.op.strategy not in [
Expand All @@ -197,9 +197,9 @@ def draw(self, context):
col.prop(self.op, "parallel_angle")
box = col.box()
col = box.column(align=True)
col.label(text="Toolpath Distance")
col.prop(self.op, "distance_between_paths", text="Between")
col.prop(self.op, "distance_along_paths", text="Along")
col.label(text="Toolpath")
col.prop(self.op, "distance_between_paths", text="Stepover")
col.prop(self.op, "distance_along_paths", text="Detail")

# A & B, Array, Bridges Options
if self.level >= 1:
Expand Down
Binary file added scripts/addons/docs/_static/BlockOptions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added scripts/addons/docs/_static/CarveOptions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added scripts/addons/docs/_static/CirclesOptions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added scripts/addons/docs/_static/CrossOptions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added scripts/addons/docs/_static/CurveOptions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added scripts/addons/docs/_static/CutoutOptions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added scripts/addons/docs/_static/DrillOptions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added scripts/addons/docs/_static/MedialAxisOptions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added scripts/addons/docs/_static/ParallelOptions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added scripts/addons/docs/_static/PocketOptions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added scripts/addons/docs/_static/SpiralOptions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added scripts/addons/docs/_static/WaterlineOptions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Profile & Pocket (Step-by-Step)
# Example Chain Workflow

1. Convert model from CSG to mesh (in this example FreeCAD is used for conversion). Precision setting is very important for correct result.

Expand Down
Loading

0 comments on commit 87bc0ed

Please sign in to comment.