cadquery-freecad-module/tests/TestSVGexporter.py
2013-04-16 22:29:06 -04:00

16 lines
315 B
Python

__author__ = 'dcowden'
from cadquery import *
import unittest,sys
from tests 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')