1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-08 14:17:06 +03:00
Files
occt/src/IntPatch/IntPatch_GLine.lxx
abv d5f74e42d6 0024624: Lost word in license statement in source files
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast
Wrong license statements corrected in several files.
Copyright and license statements added in XSD and GLSL files.
Copyright year updated in some files.
Obsolete documentation files removed from DrawResources.
2014-02-20 16:15:17 +04:00

113 lines
2.5 KiB
Plaintext

// Created on: 1992-04-06
// Created by: Jacques GOUSSARD
// Copyright (c) 1992-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <Standard_DomainError.hxx>
#include <gp_Lin.hxx>
#include <gp_Circ.hxx>
#include <gp_Elips.hxx>
#include <gp_Parab.hxx>
#include <gp_Hypr.hxx>
#include <Precision.hxx>
inline void IntPatch_GLine::SetFirstPoint (const Standard_Integer IndFirst)
{
fipt = Standard_True;
indf = IndFirst;
}
inline void IntPatch_GLine::SetLastPoint (const Standard_Integer IndLast)
{
lapt = Standard_True;
indl = IndLast;
}
inline gp_Lin IntPatch_GLine::Line () const
{
if (typ != IntPatch_Lin) {Standard_DomainError::Raise();}
return gp_Lin(pos.Axis());
}
inline gp_Circ IntPatch_GLine::Circle () const
{
if (typ != IntPatch_Circle) {Standard_DomainError::Raise();}
return gp_Circ(pos,par1);
}
inline gp_Elips IntPatch_GLine::Ellipse () const
{
if (typ != IntPatch_Ellipse) {Standard_DomainError::Raise();}
return gp_Elips(pos,par1,par2);
}
inline gp_Parab IntPatch_GLine::Parabola () const
{
if (typ != IntPatch_Parabola) {Standard_DomainError::Raise();}
return gp_Parab(pos,par1);
}
inline gp_Hypr IntPatch_GLine::Hyperbola () const
{
if (typ != IntPatch_Hyperbola) {Standard_DomainError::Raise();}
return gp_Hypr(pos,par1,par2);
}
inline Standard_Boolean IntPatch_GLine::HasFirstPoint () const
{
return fipt;
}
inline Standard_Boolean IntPatch_GLine::HasLastPoint () const
{
return lapt;
}
inline const IntPatch_Point& IntPatch_GLine::FirstPoint () const
{
if (!fipt) {Standard_DomainError::Raise();}
return svtx(indf);
}
inline const IntPatch_Point& IntPatch_GLine::LastPoint () const
{
if (!lapt) {Standard_DomainError::Raise();}
return svtx(indl);
}
inline Standard_Integer IntPatch_GLine::NbVertex () const
{
return svtx.Length();
}
inline const IntPatch_Point& IntPatch_GLine::Vertex (const Standard_Integer Index) const
{
return svtx(Index);
}