summaryrefslogtreecommitdiff
path: root/src/DrawDim/DrawDim_PlanarDimension.cxx
blob: bb2db2d3cf63e31407614cb7926b8fc328dd17e7 (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
28
29
30
31
32
33
// File:	DrawPlanarDim_PlanarDimension.cxx
// Created:	Wed Jan 10 16:16:34 1996
// Author:	Denis PASCAL
//		<dp@zerox>


#include <DrawDim_PlanarDimension.ixx>
#include <Standard_DomainError.hxx>
#include <Draw_Interpretor.hxx>


//=======================================================================
//function : SetPlane
//purpose  : 
//=======================================================================

void DrawDim_PlanarDimension::SetPlane(const TopoDS_Face& plane)
{
  myPlane = plane;
}

//=======================================================================
//function : GetPlane
//purpose  : 
//=======================================================================

TopoDS_Face DrawDim_PlanarDimension::GetPlane() const 
{
  return myPlane;
}