| Operations with polygon vertices |
 |
| codex |
2012/10/31 13:12 |
Hello, I have a polygon object and I want to change vertex coordinates, add and remove vertices.
How to do this? And how to drag vertex by mouse?
BRepBuilderAPI_MakePolygon MP;
MP.Add(p1);
MP.Add(p2);
MP.Add(p3);
Handle(AIS_Shape) ais_poly = new AIS_Shape(MP);
myContext->Display(ais_poly); |
 |
| | | |