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,42 @@
// File: GCE2d_MakeTranslation.cxx
// Created: Fri Oct 2 16:38:15 1992
// Author: Remi GILET
// <reg@topsn3>
#include <GCE2d_MakeTranslation.ixx>
//=========================================================================
// Creation d une translation 3d de Geom2d de vecteur de tanslation Vec. +
//=========================================================================
GCE2d_MakeTranslation::GCE2d_MakeTranslation(const gp_Vec2d& Vec ) {
TheTranslation = new Geom2d_Transformation();
TheTranslation->SetTranslation(Vec);
}
//=========================================================================
// Creation d une translation 3d de Geom2d de vecteur de tanslation le +
// vecteur reliant Point1 a Point2. +
//=========================================================================
GCE2d_MakeTranslation::GCE2d_MakeTranslation(const gp_Pnt2d& Point1 ,
const gp_Pnt2d& Point2 ) {
TheTranslation = new Geom2d_Transformation();
TheTranslation->SetTranslation(Point1,Point2);
}
const Handle(Geom2d_Transformation)& GCE2d_MakeTranslation::Value() const
{
return TheTranslation;
}
const Handle(Geom2d_Transformation)& GCE2d_MakeTranslation::Operator() const
{
return TheTranslation;
}
GCE2d_MakeTranslation::operator Handle(Geom2d_Transformation) () const
{
return TheTranslation;
}