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