git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8961 626c5289-ae23-0410-ae9c-e8d60b6d4f22
11 lines
223 B
Python
11 lines
223 B
Python
from li_factory import *
|
|
|
|
circle = Geometry_create(Geometry.CIRCLE)
|
|
r = circle.radius()
|
|
if (r != 1.5):
|
|
raise RuntimeError
|
|
|
|
point = Geometry_create(Geometry.POINT)
|
|
w = point.width()
|
|
if (w != 1.0):
|
|
raise RuntimeError
|