You can find any tool by the Menu Structure HERE: https://turbocaddoc.atlassian.net/wiki/display/TC20UG/Menu+Structure

You can find the menu location of any tool by name HERE: https://turbocaddoc.atlassian.net/wiki/display/TC20UG/Tools+Mapped+to+Menus

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »


  • Export to – How will the image be exported:
    • New Drawing – In a new CAD Drawing
    • Current Drawing – Into the Current CAD Drawing
    • Selected Image – Out to the Selected Image's file.


Image Operation:
This sets the method by which the Destination (Image File) is combined with the Source (exported 2D Objects). The color is combined for each RGB color channel per pixel.
Add: Destination = Destination + Source (If the amount is greater than 255, the result is 255
And: Destination = Destination & Source (Bitwise AND two images)
Xor: Destination = Destination xor Source (Bitwise XOR two images)
Or: Destination = Destination or Source (Bitwise OR two images)
Copy:    Destination = Source
Sub: Destination = Destination – Source
Blend: Destination = Source + degradation
Screen: Destination = Destination + Source + degradation (The result image will have a lighter tonality)
Avg: Destination = (Destination+ Source)/2

  • No labels