blob: 09eb822064847192a6ff583ad7b6044a20147a9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// File: ShapeBuild.cxx
// Created: Wed Jun 10 16:03:56 1998
// Author: data exchange team
// <det@nicebox.nnov.matra-dtv.fr>
#include <ShapeBuild.ixx>
//=======================================================================
//function : PlaneXOY
//purpose :
//=======================================================================
Handle(Geom_Plane) ShapeBuild::PlaneXOY()
{
static Handle(Geom_Plane) xoy;
if (xoy.IsNull()) xoy = new Geom_Plane (0,0,1,0);
return xoy;
}
|