1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-08 14:17:06 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
// File: gce_MakeTranslation2d.cxx
// Created: Thu Sep 3 17:18:54 1992
// Author: Remi GILET
// <reg@sdsun1>
#include <gce_MakeTranslation2d.ixx>
//=========================================================================
// Creation d une translation 2d de gp de vecteur de tanslation Vec. +
//=========================================================================
gce_MakeTranslation2d::
gce_MakeTranslation2d(const gp_Vec2d& Vec ) {
TheTranslation2d.SetTranslation(Vec);
}
//=========================================================================
// Creation d une translation 2d de gp de vecteur de tanslation le +
// vecteur reliant Point1 a Point2. +
//=========================================================================
gce_MakeTranslation2d::
gce_MakeTranslation2d(const gp_Pnt2d& Point1 ,
const gp_Pnt2d& Point2 ) {
TheTranslation2d.SetTranslation(gp_Vec2d(Point1,Point2));
}
const gp_Trsf2d& gce_MakeTranslation2d::Value() const
{
return TheTranslation2d;
}
const gp_Trsf2d& gce_MakeTranslation2d::Operator() const
{
return TheTranslation2d;
}
gce_MakeTranslation2d::operator gp_Trsf2d() const
{
return TheTranslation2d;
}