When I display the point, it is visualized like a small "cross", instead of a single point.
Does anybody know how to just show a point like in OpenGL ???
Discussion
5 archived replies
Posts are displayed in their archived order.
01Commenter-1
The quick and dirty solution is to subclass AIS_Point and provide your own implementation.
A better and clean solution can be to look the implementation of all point display related class and try to find if the aspect is customizable (AIS_Point, Prs3d_PointAspect, Graphic3d_AspectMarker3d, ...)
02Commenter-2
The trick is to use AIS_Drawer::SetPointAspect(Handle(Prs3d_PointAspect)). Check the different values for Aspect_TypeOfMarker, where the one you most likely want is Aspect_TOM_POINT.
03Author
Thank you, macro and Paul. I get it.
04Commenter-1
Please share the solution you will find with the other forum users.