1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-01 10:26:12 +03:00
occt/src/DrawTrSurf/DrawTrSurf_BezierCurve2d.cxx
asuraven a13df0fee0 0031990: Coding, Draw Harness - Replace C-like pointers to function in Draw_SaveAndRestore class to virtual function
Save/Restore interface has been moved to Draw_Drawable3D base class.
Create a singleton Draw_Params class for DRAW parameters
2021-02-20 10:43:32 +03:00

112 lines
4.0 KiB
C++

// Copyright (c) 1995-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 <DrawTrSurf_BezierCurve2d.hxx>
#include <Draw_Color.hxx>
#include <Draw_Display.hxx>
#include <DrawTrSurf.hxx>
#include <DrawTrSurf_Params.hxx>
#include <Geom2d_BezierCurve.hxx>
#include <GeomTools_Curve2dSet.hxx>
#include <gp_Pnt.hxx>
#include <TColgp_Array1OfPnt2d.hxx>
#include <TColStd_Array1OfReal.hxx>
IMPLEMENT_STANDARD_RTTIEXT(DrawTrSurf_BezierCurve2d, DrawTrSurf_Curve2d)
DrawTrSurf_BezierCurve2d::DrawTrSurf_BezierCurve2d (const Handle(Geom2d_BezierCurve)& C)
: DrawTrSurf_Curve2d (C, Draw_vert, 50)
{
drawPoles = Standard_True;
polesLook = Draw_rouge;
}
DrawTrSurf_BezierCurve2d::DrawTrSurf_BezierCurve2d (const Handle(Geom2d_BezierCurve)& C, const Draw_Color& CurvColor,
const Draw_Color& PolesColor, const Standard_Boolean ShowPoles,
const Standard_Integer Discret)
: DrawTrSurf_Curve2d (C, CurvColor, Discret)
{
drawPoles = ShowPoles;
polesLook = PolesColor;
}
void DrawTrSurf_BezierCurve2d::DrawOn (Draw_Display& dis) const
{
Handle(Geom2d_BezierCurve) C = Handle(Geom2d_BezierCurve)::DownCast(curv);
if (drawPoles)
{
dis.SetColor(polesLook);
TColgp_Array1OfPnt2d CPoles (1, C->NbPoles());
C->Poles (CPoles);
dis.MoveTo(CPoles(1));
for (Standard_Integer i = 2; i <= C->NbPoles(); i++) {
dis.DrawTo(CPoles(i));
}
}
DrawTrSurf_Curve2d::DrawOn(dis);
}
void DrawTrSurf_BezierCurve2d::FindPole (const Standard_Real X, const Standard_Real Y,
const Draw_Display& D,
const Standard_Real XPrec,
Standard_Integer& Index) const
{
Handle(Geom2d_BezierCurve) bz = Handle(Geom2d_BezierCurve)::DownCast(curv);
gp_Pnt2d p1(X/D.Zoom(),Y/D.Zoom());
Standard_Real Prec = XPrec / D.Zoom();
Index++;
Standard_Integer NbPoles = bz->NbPoles();
gp_Pnt P;
gp_Pnt2d P2d;
while (Index <= NbPoles) {
P2d = bz->Pole(Index);
P.SetCoord (P2d.X(), P2d.Y(), 0.0);
if (D.Project(P).Distance(p1) <= Prec)
return;
Index++;
}
Index = 0;
}
//=======================================================================
//function : Copy
//purpose :
//=======================================================================
Handle(Draw_Drawable3D) DrawTrSurf_BezierCurve2d::Copy() const
{
Handle(DrawTrSurf_BezierCurve2d) DC = new DrawTrSurf_BezierCurve2d
(Handle(Geom2d_BezierCurve)::DownCast(curv->Copy()),
look,polesLook,
drawPoles,
GetDiscretisation());
return DC;
}
//=======================================================================
//function : Restore
//purpose :
//=======================================================================
Handle(Draw_Drawable3D) DrawTrSurf_BezierCurve2d::Restore (Standard_IStream& theStream)
{
const DrawTrSurf_Params& aParams = DrawTrSurf::Parameters();
Handle(Geom2d_BezierCurve) aGeomCurve = Handle(Geom2d_BezierCurve)::DownCast(GeomTools_Curve2dSet::ReadCurve2d (theStream));
Handle(DrawTrSurf_BezierCurve2d) aDrawCurve = new DrawTrSurf_BezierCurve2d (aGeomCurve,
aParams.CurvColor, aParams.PolesColor,
aParams.IsShowPoles, aParams.Discret);
return aDrawCurve;
}