Skip to content

Commit 9e12f12

Browse files
committed
Add VisualScriptCAD logo as an example file.
1 parent ef0716f commit 9e12f12

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

Examples/vscad_logo.vsc

5.8 KB
Binary file not shown.

Sources/VisualScriptCAD/Application/MainWindow.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ static const std::vector<std::pair<std::wstring, std::wstring>> exampleFiles = {
2929
{ L"Plate with Holes", L"plate_with_holes.vsc" },
3030
{ L"Box-Sphere Difference", L"box_sphere_diff.vsc" },
3131
{ L"Sphere-Torus Difference", L"sphere_torus_diff.vsc" },
32+
{ L"VisualScriptCAD Logo", L"vscad_logo.vsc" },
3233
{ L"CSG Operations", L"csg_operations.vsc" }
3334
};
3435

Test/CompatibilityTest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ def Main (argv):
7373
'boundingBox' : ([-0.798, -1.3, -0.8], [2.3, 1.3, 0.8]),
7474
'surface' : 22.170
7575
},
76+
{
77+
'name' : 'vscad_logo.vsc',
78+
'boundingBox' : ([-0.57735, -0.57735, -0.57735], [0.57735, 0.57735, 0.57735]),
79+
'surface' : 3.97567684187
80+
},
7681
{
7782
'name' : 'csg_operations.vsc',
7883
'boundingBox' : ([-0.5, -0.5, -0.5], [0.5, 0.5, 0.5]),

0 commit comments

Comments
 (0)