blob: c2b9e4ea1d1d6b9b476fa2f93a4f6282bb33ac83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// File: TopoDS_TWire.cxx
// Created: Fri Apr 12 10:23:34 1991
// Author: Remi LEQUETTE
#include <TopoDS_TWire.ixx>
#include <TopAbs.hxx>
//=======================================================================
//function : ShapeType
//purpose :
//=======================================================================
TopAbs_ShapeEnum TopoDS_TWire::ShapeType() const
{
return TopAbs_WIRE;
}
//=======================================================================
//function : EmptyCopy
//purpose :
//=======================================================================
Handle(TopoDS_TShape) TopoDS_TWire::EmptyCopy() const
{
return Handle(TopoDS_TWire)(new TopoDS_TWire());
}
|