1
0

Initial commit

This commit is contained in:
2026-02-22 14:16:24 +01:00
commit 1692d191fa
3684 changed files with 10817616 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
###############################################################################
# segmented_tool_ascii_custom.tcl - This is the customization file that will be sourced in
# after the segmented_tool_ascii.tcl is sourced in. This file is supplied as a sample and should be
# copied and modified and placed in a different location than the NX installation and the directory
# should be pointed to by the environment variable UGII_CAM_CUSTOM_LIBRARY_TOOL_ASCII_DIR
###############################################################################
# Global variable override
set ::dbc_segment_angle_decimal_place 8
namespace eval CUSTOM \
{
# The proc in the CUSTOM namespace will be called instead of the system DBC_retrieve to enable
# user customization
proc DBC_retrieve {} \
{
# Take custom action before the system/global namespace DBC_retrieve
#Call to the system/global DBC_retrieve
::DBC_retrieve
# Take custom action after the system/global namespace DBC_retrieve
}
}