blob: a7151a2d93461cb04cae0986bf415efe8405d677 (
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: PGeom2d_VectorWithMagnitude.cxx
// Created: Thu Mar 4 11:08:17 1993
// Author: Philippe DAUTRY
// <fid@sdsun2>
// Copyright: Matra Datavision 1993
#include <PGeom2d_VectorWithMagnitude.ixx>
//=======================================================================
//function : PGeom2d_VectorWithMagnitude
//purpose :
//=======================================================================
PGeom2d_VectorWithMagnitude::PGeom2d_VectorWithMagnitude()
{}
//=======================================================================
//function : PGeom2d_VectorWithMagnitude
//purpose :
//=======================================================================
PGeom2d_VectorWithMagnitude::PGeom2d_VectorWithMagnitude
(const gp_Vec2d& aVec) :
PGeom2d_Vector(aVec)
{}
|