16 lines
304 B
Python
16 lines
304 B
Python
![]() |
__author__ = 'dcowden'
|
||
|
|
||
|
from cadquery import *
|
||
|
|
||
|
import unittest,sys
|
||
|
import MakeTestObjects
|
||
|
import SVGexporter
|
||
|
|
||
|
class TestCadQuery(unittest.TestCase):
|
||
|
def setUp(self):
|
||
|
pass
|
||
|
|
||
|
def testExport(self):
|
||
|
t = MakeTestObjects.makeCube(20)
|
||
|
|
||
|
SVGexporter.exportSVG(t,'c:/temp/test.svg')
|