Is there any way to prevent the stepwriter from doing this?
(OpenCascade version 7.9.0)
Thanks in advance,
Author
Discussion
1 archived reply
Posts are displayed in their archived order.
01Commenter-1
Hello. It can't be changed natively. The one of the option - you can iterate under the created model tree and extract all PRODUCT entity and change their name manually.
// get starting data
const Handle(Interface_InterfaceModel)& Model = WS->Model();
for (Standard_Integer i = 1; i <= nb; i++)
{
Handle(Standard_Transient) enti = Model->Value(i);
}
But if you want to change the implementation, the code responsible for the naming here: