Sketcher: Port and fix internal faces from RealThunder's branch

Co-authored-by: Zheng Lei <realthunder.dev@gmail.com>
Co-authored-by: Kacper Donat <kacper@kadet.net>
Co-authored-by: Pierre-Louis Boyer <pierrelouis.boyer@gmail.com>
This commit is contained in:
paddle
2025-06-13 16:57:43 +02:00
committed by Kacper Donat
parent 5b2a2b822a
commit 76f2b120ff
13 changed files with 391 additions and 119 deletions

View File

@@ -47,6 +47,23 @@
using namespace PartGui;
SO_NODE_SOURCE(SoFCShape);
SoFCShape::SoFCShape()
: coords(new SoCoordinate3)
, norm(new SoNormal)
, faceset(new SoBrepFaceSet)
, lineset(new SoBrepEdgeSet)
, nodeset(new SoBrepPointSet)
{
SO_NODE_CONSTRUCTOR(SoFCShape);
}
void SoFCShape::initClass()
{
SO_NODE_INIT_CLASS(SoFCShape, SoSeparator, "Separator");
}
SO_NODE_SOURCE(SoFCControlPoints)
void SoFCControlPoints::initClass()