I'm new to OpenMesh and have a very basic question. I’m trying to create a plane with OpenMesh in python. I have tried the following and it doesn’t work:
import openmesh as om
om.Plane3d(om.vec3f(0,0,1),point)
So first of all I get an error message saying that
om has no module called Plane3d
I also tried with om.VDPM.Plane3d
and om.Geometry.Plane3d
, same results.
How do I call the function that creates a plane?
Secondly, as I read the documentation (http://www.openmesh.org/Daily-Builds/Doc/a01919.html) Plane3d takes in a vector and a point. How do I create a point? Is a point the same in OpenMesh as a vector?