mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-26 21:00:34 +05:00
py
This commit is contained in:
parent
5bfa6a39df
commit
61479ed2a4
@ -99,8 +99,13 @@ void ExportCSG()
|
||||
bp::scope local_scope(module);
|
||||
|
||||
|
||||
bp::class_<Point<3>> ("Point3d", bp::init<double,double,double>()) ;
|
||||
bp::class_<Vec<3>> ("Vec3d", bp::init<double,double,double>()) ;
|
||||
bp::class_<Point<3>> ("Point3d", bp::init<double,double,double>())
|
||||
.def(bp::self+Vec<3>())
|
||||
;
|
||||
bp::class_<Vec<3>> ("Vec3d", bp::init<double,double,double>())
|
||||
.def(bp::self+bp::self)
|
||||
;
|
||||
|
||||
|
||||
bp::class_<SPSolid, shared_ptr<SPSolid>, boost::noncopyable> ("Solid", bp::no_init) ;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user