
Mon, 01/27/2025 - 03:00
Forums:
Hi all,
Im extremely new to OCCT3D, been basically checking some of the demos and i was wondering how to change the display mode of my shapes to a very specific visualization mode:
All Faces have to be shown in the color of the face (or body if no face color is defined)
All Edges have to be shown in black
All Wires have to be shown in the color of the wire
Is there a way to do that?
We are a spanish CAD/CAM company and we are exploring the possibility of changing our kernel to OCCT3D
Thank you very much!
Mon, 01/27/2025 - 16:15
Hello.
AIS interface of OCCT is flexible and offers you full control on any attributes.
There are 2 possible solution, write you own drawing or override attributes of already existed shapes. I will share some small samples, but correct samples require the infromation about your implementation.
Additionally, OCCT offers technical support (guiding you with OCCT usage), custom development (helping to create or modify your application or only some parts), trainings (online or on-side trainings with OCCT experts) and e-learnings.
The sample (it is just peaces of different classes, but just samples with overriding material of solids or edges):
Best regards, Dmitrii
Mon, 01/27/2025 - 17:23
Oh, great i see the idea!
Thanks for the tip, we most probably will be using tech support and elearnings soon, for now, its just a POC we are creating to see the viability of the project.
I was tinkering with the DefaultDrawer in the CSharp_D3D sample (wpf) OCCTProxyD3D.cpp OCCTProxyD3D::InitViewer() and added this:
And it worked like a charm!
Funnily i was so close to find the solution, but i was using the free and unfree boundaries instead, which did not have any effect (what are they?).
Will keep trying to figure out how to show the different face colors of step imported shapes (instead of forcing a single color for all) and tweaking the selection and hilight as per our needs.
Thanks so much for your help!
Best regards,
Dario
Tue, 01/28/2025 - 09:48
Dario wrote:
Prs3d_Drawer::FreeBoundaryAspect()
/UnFreeBoundaryAspect()
/WireAspect()
aspects affect displaying edges inAIS_Wireframe
mode (as well asUIsoAspect
/VIsoAspect()
for isolines). E.g. UnFree for internal boundaries (shared between faces), Free for external boundaries, Wire for edges that are not part of any boundary.Tue, 01/28/2025 - 12:56
Great thanks for the info!
I guess then that LineAspect is for any curves/inear topology, isn't it?