blob: 6de7a89d3509c7a8db4db6e5ece8ef4f480ec5a6 (
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
|
// File: PGeom2d_Direction.cxx
// Created: Wed Mar 3 17:40:27 1993
// Author: Philippe DAUTRY
// <fid@phylox>
// Copyright: Matra Datavision 1993
#include <PGeom2d_Direction.ixx>
//=======================================================================
//function : PGeom2d_Direction
//purpose :
//=======================================================================
PGeom2d_Direction::PGeom2d_Direction()
{}
//=======================================================================
//function : PGeom2d_Direction
//purpose :
//=======================================================================
PGeom2d_Direction::PGeom2d_Direction(const gp_Vec2d& aVec) :
PGeom2d_Vector(aVec)
{}
|