Here is list of the quesitons we answered. Please feel free to contact us if there is a question not answered here.
How to make the translation of the language string in interface

In CutLeader Version >=6.5

Since CutLeader version 6.5, we implemented a new mechanism to support the multiple language in a flexible way.

Now user/reseller could create/modify the translation thenselves, by the below steps :

1. Open the CutLeader–>options dialog

2. Switch to the language you like to translate

3. Save the option and restart CutLeader

4. In CutLeader–>option dialog, choose the “translate” button to begin the translating.

How to set kerf size and enable the kerf offset calculation

In CutLeader version <6.2:
the kerf size is set in “Expert Library”–>”Sequence Setting”–>”Beam Width”.
Enable the kerf offset by Check on the “Calculate Offset by Software” option

In CutLeader Version >=6.2:
the kerf size is set in “Expert Library”–>”Tool Assignment”–>”Manage Tools”–>”Tool Size”.
Enable the kerf offset by Check on the “Calculate Offset by Software” option in “Expert Library”–>”Sequence Setting”.

How to solve “side-by-side configuration is incorrect” when launching CutLeader

This problem is caused by the loss of windows system running environment.

For CutLeader, the Microsoft Visual C++ 2008 Sp1 Redistributable Package (x86) and (x64) should be installed, user could download the  vcredist package from below link.

https://www.cutleader.com/download/vcredist_2008/vcredist_x86.exe

https://www.cutleader.com/download/vcredist_2008/vcredist_x64.exe

side-by-side

How to Split DXF file with multiple parts in CutLeader

For a dxf/dwg file with multiple parts,  it should be split to seperate parts before nesting. In CutLeader, it is called asembly dxf/dwg file. 

User could add this kind of file to sheet or nest job by “Add Part From Assembly DXF/DWG” command.  See picture below.

select seperate dxf parts
load dxf file from multiple parts file

CutLeader has the ability to recognize the same parts from the dxf file and count the quantity of each part.

recognize same parts

How to get part position and rotate angle info from the nesting result?

The part position and rotate angle info is provided by a matrix. Below is the structure of the data flow.

We could get the art translation X/Y and rotation info by the value in the matrix. Geomtry translation calculation interface is provided by the API also.

The translation and rotation is based on the original part geometry coordinate.

Matrix2DEx.GetMatVal(COLUMN, ROW)

ROW#1
Matrix2DEx.GetMatVal(0, 0) = cos(a)
Matrix2DEx.GetMatVal(1, 0) = -sin(a)
Matrix2DEx.GetMatVal(2, 0) = Translation in X

ROW#2
Matrix2DEx.GetMatVal(0, 1) = sin(a)
Matrix2DEx.GetMatVal(1, 1) = cos(a)
Matrix2DEx.GetMatVal(2, 1) = Translation in Y

ROW#3
Matrix2DEx.GetMatVal(0, 2) = 0
Matrix2DEx.GetMatVal(1, 2) = 0
Matrix2DEx.GetMatVal(2, 2) = 1

What is Part-In-Part

Question: What is the part-in-part feature for the nesting?

Reply: When a part has a big hole and it is nested with some of small shape parts. The small parts could be placed in the hole of the  big part, then more material could be saved.

Below picture explained the feature well.

Could not load file or assembly ‘nestBridge.dll’ or one of its dependencies

Quetsion: Not able to run C# demo project solution NestProfessorV7-****-net. It compiles, but it throws following Exception when run the compiled program:

Could not load file or assembly ‘nestBridge.dll’ or one of its dependencies. The specified module could not be found.

Reply: It is because of the missing of the C++ components.

Since VS2015, the C++ component wouldn’t be isntalled as a default option, then many C# programmer won’t check on this component when installing the VS.