but what's the constructor for AIS_InteractiveContext ... and also .. I was unable to find a DISPLAY member function in this class which has AIS_Shape object as a parameter ... please tell me more !
You should look at the samples packaged with OpenCascade library, especially the Qt-based sample. You will learn good basics from the source code of these samples.
The accurate class documentation is in the CDL files you can find from the ros/src/ directory.
Thu, 06/22/2006 - 19:54
Call AIS_InteractiveContext::Display() like this :
ais_context->Display (new AIS_Shape (your_shape));
Fri, 06/23/2006 - 12:43
but what's the constructor for AIS_InteractiveContext ... and also .. I was unable to find a DISPLAY member function in this class which has AIS_Shape object as a parameter ... please tell me more !
Fri, 06/23/2006 - 14:02
You should look at the samples packaged with OpenCascade library, especially the Qt-based sample. You will learn good basics from the source code of these samples.
The accurate class documentation is in the CDL files you can find from the ros/src/ directory.