int iError = St7.St7Init();
if (iError == St7.ERR7_NoError)
{
API_INITIALISED = true;
}
public const int ERR7_NoError = 0;
//create new
iErr = St7.St7NewFile(uID, filePath, DirPath);
//open existing
iErr = St7.St7OpenFile(uID, filePath, DirPath);
foreach (Brep brep in brepList)
{
BrepSurfaceList faces = brep.Surfaces;
for (int bfIndex = 0; bfIndex < faces.Count; bfIndex++)
{
Surface face = faces[bfIndex];
NurbsSurface nurbsSurface = face.ToNurbsSurface();
NurbsSurfacePointList points = nurbsSurface.Points;
List<ControlPoint> controlPointList = points.ToList();
foreach (ControlPoint point in controlPointList)
{
double[] p1 = { point.X, point.Y, point.Z };
//we have got the point, now let’s creat the same point
// on St7 side.
St7.St7SetNodeXYZ(1, counter, p1);
}
pointList.Insert(0, pointList.Count);
int[] connection = pointList.ToArray();
iErr = St7.St7SetElementConnection(1, St7.tyPLATE, plateCounter, plateCounter, connection);
plateCounter++;
for (int pc = 1; pc <= plateCounter; pc++)
{
iErr = St7.St7SetEntitySelectState(1, St7.tyPLATE, pc, 0, St7.btTrue);
}
iErr = St7.St7SetSourceAction(1, St7.saDelete);
iErr = St7.St7SetKeepSelect(1, St7.btFalse);
iErr = St7.St7FaceFromPlate(1, St7.btTrue, St7.btTrue, St7.btFalse);
iErr = St7.St7SaveFile(1);
iErr = St7.St7CloseFile(1);