PocketParameterData: Difference between revisions

From SDK
Jump to navigation Jump to search
No edit summary
No edit summary
Line 15: Line 15:


===.Allowance===
===.Allowance===
''R/W - double - allowance to leave on pocket sides when calculating toolpath
'''Interaction:''' Read and Write
 
'''Returns:''' (double) Allowance to leave on pocket sides when calculating toolpath


===.AllowanceFormula===
===.AllowanceFormula===
''R/W - string -Formula for allowance to leave on pocket sides when calculating toolpath
'''Interaction:''' Read and Write
 
'''Returns:''' (string) Formula for allowance to leave on pocket sides when calculating toolpath


===.CutDepth===
===.CutDepth===
''R/W - double -Final cutting depth below start depth
'''Interaction:''' Read and Write
 
'''Returns:''' (double) Final cutting depth below start depth


===.CutDepthFormula===
===.CutDepthFormula===
''R/W - string -Formula for cutting depth below start depth
'''Interaction:''' Read and Write
 
'''Returns:''' (string) Formula for cutting depth below start depth


===.CutDirection===
===.CutDirection===
R/W - integer - Cutting direction for toolpath. Valid values are ...
'''Interaction:''' Read and Write
 
'''Returns:''' (integer) Cutting direction for toolpath. Valid values are as follow:
 
::ProfileParameterData.CLIMB_DIRECTION
::ProfileParameterData.CLIMB_DIRECTION
::ProfileParameterData.CONVENTIONAL_DIRECTION
::ProfileParameterData.CONVENTIONAL_DIRECTION
Note: Direction constants use ProfileParameterData. NOT PocketParameterData.
Note: Direction constants use ProfileParameterData. NOT PocketParameterData.


===.DoRamping===
===.DoRamping===
'''R/W - bool - If true ramp entry to pockets (always zig-zag)
'''Interaction:''' Read and Write
 
'''Returns:''' (bool) If true ramp entry to pockets (always zig-zag)


===.DoRasterClearance===
===.DoRasterClearance===
'''R/W - bool - if true doing raster area clearance, else offset
'''Interaction:''' Read and Write


'''Returns:''' (bool) if true we will do peck drilling
'''Returns:''' (bool) If true doing raster area clearance, else offset
 
'''Returns:''' (bool) If true we will do peck drilling


===.Name===
===.Name===
R/W - string - The name for the toolpath
'''Interaction:''' Read and Write
 
'''Returns:''' (string) The name for the toolpath


===.ProfilePassType===
===.ProfilePassType===
R/W - integer - type of profile pass to perform . Valid values are ...
'''Interaction:''' Read and Write
 
'''Returns:''' (integer) Type of profile pass to perform . Valid values are as follows:
 
::PocketParameterData.PROFILE_NONE
::PocketParameterData.PROFILE_NONE
::PocketParameterData.PROFILE_FIRST
::PocketParameterData.PROFILE_FIRST
::PocketParameterData.PROFILE_LAST
::PocketParameterData.PROFILE_LAST


===.ProjectToolpath===
===.ProjectToolpath===
R/W - bool - If true and used with Aspire, toolpath is projected onto model surface after calculation
'''Interaction:''' Read and Write
 
'''Returns:''' (bool) If true and used with Aspire, toolpath is projected onto model surface after calculation


===.RampDistance===
===.RampDistance===
R/W - double - distance to ramp over if doing ramping
'''Interaction:''' Read and Write
 
'''Returns:''' (double) Distance to ramp over if doing ramping


===.RasterAllowance===
===.RasterAllowance===
R/W - double - allowance to leave on pocket edge between rasters
'''Interaction:''' Read and Write
 
'''Returns:''' (double) Allowance to leave on pocket edge between raster


===.RasterAngle===
===.RasterAngle===
R/W - double - Angle in degrees to create raster toolpaths at
'''Interaction:''' Read and Write
 
'''Returns:''' (double) Angle in degrees to create raster toolpaths at


===.StartDepth===
===.StartDepth===
R/W - double - Start depth for toolpath below material surface
'''Interaction:''' Read and Write
 
'''Returns:''' (double) Start depth for toolpath below material surface


===.StartDepthFormula===
===.StartDepthFormula===
R/W - string -Formula for start depth for toolpath below material surface
'''Interaction:''' Read and Write
 
'''Returns:''' (string) Formula for start depth for toolpath below material surface


===.UseAreaClearTool===
===.UseAreaClearTool===
R/W - bool - If true use a larger tool for area clearance
'''Interaction:''' Read and Write
 
'''Returns:''' (bool) If true use a larger tool for area clearance


'''Example Code'''
'''Example Code'''

Revision as of 18:25, 1 May 2024

Back.jpg

This object is used to hold the settings for a pocketing toolpath and also the clearance tool section of a flat bottomed v carving toolpath.

Constructor

ProfileParameterData() - Constructor

Create a new object ready to have its parameters set

For Example:

local pocket_data = PocketParameterData()() 

Properties

.Allowance

Interaction: Read and Write

Returns: (double) Allowance to leave on pocket sides when calculating toolpath

.AllowanceFormula

Interaction: Read and Write

Returns: (string) Formula for allowance to leave on pocket sides when calculating toolpath

.CutDepth

Interaction: Read and Write

Returns: (double) Final cutting depth below start depth

.CutDepthFormula

Interaction: Read and Write

Returns: (string) Formula for cutting depth below start depth

.CutDirection

Interaction: Read and Write

Returns: (integer) Cutting direction for toolpath. Valid values are as follow:
ProfileParameterData.CLIMB_DIRECTION
ProfileParameterData.CONVENTIONAL_DIRECTION

Note: Direction constants use ProfileParameterData. NOT PocketParameterData.

.DoRamping

Interaction: Read and Write

Returns: (bool) If true ramp entry to pockets (always zig-zag)

.DoRasterClearance

Interaction: Read and Write

Returns: (bool) If true doing raster area clearance, else offset
Returns: (bool) If true we will do peck drilling

.Name

Interaction: Read and Write

Returns: (string) The name for the toolpath

.ProfilePassType

Interaction: Read and Write

Returns: (integer) Type of profile pass to perform . Valid values are as follows:
PocketParameterData.PROFILE_NONE
PocketParameterData.PROFILE_FIRST
PocketParameterData.PROFILE_LAST

.ProjectToolpath

Interaction: Read and Write

Returns: (bool) If true and used with Aspire, toolpath is projected onto model surface after calculation

.RampDistance

Interaction: Read and Write

Returns: (double) Distance to ramp over if doing ramping

.RasterAllowance

Interaction: Read and Write

Returns: (double) Allowance to leave on pocket edge between raster

.RasterAngle

Interaction: Read and Write

Returns: (double) Angle in degrees to create raster toolpaths at

.StartDepth

Interaction: Read and Write

Returns: (double) Start depth for toolpath below material surface

.StartDepthFormula

Interaction: Read and Write

Returns: (string) Formula for start depth for toolpath below material surface

.UseAreaClearTool

Interaction: Read and Write

Returns: (bool) If true use a larger tool for area clearance

Example Code

-- Create object used to pass pocketing options - used for area clearance only
local pocket_data = PocketParameterData()
-- start depth for toolpath
pocket_data.StartDepth = start_depth
-- cut depth for toolpath this is depth below start depth
pocket_data.CutDepth = flat_depth
-- direction of cut for offet clearance - ProfileParameterData.CLIMB_DIRECTION
-- or ProfileParameterData.CONVENTIONAL_DIRECTION - NOTE: enum from ProfileParameterData
pocket_data.CutDirection = ProfileParameterData.CLIMB_DIRECTION
-- if true use raster clearance strategy , else use offset area clearance
pocket_data.DoRasterClearance = true
-- angle for raster if using raster clearance
pocket_data.RasterAngle = 0
-- type of profile pass to perform PocketParameterData.PROFILE_NONE ,
-- PocketParameterData.PROFILE_FIRST orPocketParameterData.PROFILE_LAST
pocket_data.ProfilePassType = PocketParameterData.PROFILE_LAST 




Back.jpg

References

Please Note: The base material for the contents found in this WiKi was sourced from Vectric Lua Interface for Gadgets, version 2.05, published September 12, 2018. by Vectric Ltd. Most current document from Vertric can be downloaded at Vertric Developer Information