X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Pln.cpp;h=4947170e9358aaef1dbb5996fbe5439318b60ea0;hb=3d28bcbab2f3ed0e40295e64f4e836caebc19fca;hp=cee05500816e80885f7f4e5fd7cf6a02fe4be594;hpb=9e869ede4d8c56262bb20534543c2bf56cd6a91b;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Pln.cpp b/src/GeomAPI/GeomAPI_Pln.cpp index cee055008..4947170e9 100644 --- a/src/GeomAPI/GeomAPI_Pln.cpp +++ b/src/GeomAPI/GeomAPI_Pln.cpp @@ -1,8 +1,11 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_Pln.cpp // Created: 23 Apr 2014 // Author: Mikhail PONIKAROV #include +#include #include #include @@ -10,6 +13,11 @@ using namespace std; +GeomAPI_Pln::GeomAPI_Pln(const std::shared_ptr& theAxis) +: GeomAPI_Interface(new gp_Ax3(theAxis->impl())) +{ +} + GeomAPI_Pln::GeomAPI_Pln(const std::shared_ptr& thePoint, const std::shared_ptr& theNormal) : GeomAPI_Interface(new gp_Pln(thePoint->impl(), theNormal->impl()))