mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-25 21:40:33 +05:00
minor adaption
This commit is contained in:
parent
dc845bcd2c
commit
0e5e2c7883
@ -59,29 +59,26 @@ namespace netgen
|
||||
|
||||
if (strcmp (command, "get") == 0)
|
||||
{
|
||||
if (!geometry)
|
||||
if (geometry)
|
||||
{
|
||||
Tcl_SetResult (interp, err_needscsgeometry, TCL_STATIC);
|
||||
return TCL_ERROR;
|
||||
char buf[20];
|
||||
Point3d pmin = geometry->BoundingBox ().PMin();
|
||||
Point3d pmax = geometry->BoundingBox ().PMax();
|
||||
|
||||
sprintf (buf, "%5.1lf", pmin.X());
|
||||
Tcl_SetVar (interp, "::geooptions.minx", buf, 0);
|
||||
sprintf (buf, "%5.1lf", pmin.Y());
|
||||
Tcl_SetVar (interp, "::geooptions.miny", buf, 0);
|
||||
sprintf (buf, "%5.1lf", pmin.Z());
|
||||
Tcl_SetVar (interp, "::geooptions.minz", buf, 0);
|
||||
|
||||
sprintf (buf, "%5.1lf", pmax.X());
|
||||
Tcl_SetVar (interp, "::geooptions.maxx", buf, 0);
|
||||
sprintf (buf, "%5.1lf", pmax.Y());
|
||||
Tcl_SetVar (interp, "::geooptions.maxy", buf, 0);
|
||||
sprintf (buf, "%5.1lf", pmax.Z());
|
||||
Tcl_SetVar (interp, "::geooptions.maxz", buf, 0);
|
||||
}
|
||||
|
||||
char buf[20];
|
||||
Point3d pmin = geometry->BoundingBox ().PMin();
|
||||
Point3d pmax = geometry->BoundingBox ().PMax();
|
||||
|
||||
sprintf (buf, "%5.1lf", pmin.X());
|
||||
Tcl_SetVar (interp, "::geooptions.minx", buf, 0);
|
||||
sprintf (buf, "%5.1lf", pmin.Y());
|
||||
Tcl_SetVar (interp, "::geooptions.miny", buf, 0);
|
||||
sprintf (buf, "%5.1lf", pmin.Z());
|
||||
Tcl_SetVar (interp, "::geooptions.minz", buf, 0);
|
||||
|
||||
sprintf (buf, "%5.1lf", pmax.X());
|
||||
Tcl_SetVar (interp, "::geooptions.maxx", buf, 0);
|
||||
sprintf (buf, "%5.1lf", pmax.Y());
|
||||
Tcl_SetVar (interp, "::geooptions.maxy", buf, 0);
|
||||
sprintf (buf, "%5.1lf", pmax.Z());
|
||||
Tcl_SetVar (interp, "::geooptions.maxz", buf, 0);
|
||||
}
|
||||
else if (strcmp (command, "set") == 0)
|
||||
{
|
||||
|
@ -38,9 +38,6 @@ private:
|
||||
/// point coordinates
|
||||
T_POINTS points;
|
||||
|
||||
/// type of element, set in calcsurfacesofnode
|
||||
// Array<ELEMENTTYPE> eltyps;
|
||||
|
||||
/// line-segments at edges
|
||||
Array<Segment> segments;
|
||||
/// surface elements, 2d-inner elements
|
||||
|
Loading…
Reference in New Issue
Block a user