1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-01 10:26:12 +03:00
occt/src/DBRep/DBRep_HideData.cxx
bugmaster b311480ed5 0023024: Update headers of OCCT files
Added appropriate copyright and license information in source files
2012-03-21 19:43:04 +04:00

202 lines
6.1 KiB
C++
Executable File

// Created on: 1995-09-22
// Created by: Remi LEQUETTE
// Copyright (c) 1995-1999 Matra Datavision
// Copyright (c) 1999-2012 OPEN CASCADE SAS
//
// The content of this file is subject to the Open CASCADE Technology Public
// License Version 6.5 (the "License"). You may not use the content of this file
// except in compliance with the License. Please obtain a copy of the License
// at http://www.opencascade.org and read it completely before using this file.
//
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
//
// The Original Code and all software distributed under the License is
// distributed on an "AS IS" basis, without warranty of any kind, and the
// Initial Developer hereby disclaims all such warranties, including without
// limitation, any warranties of merchantability, fitness for a particular
// purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License.
#include <DBRep_HideData.ixx>
#include <HLRBRep_PolyAlgo.hxx>
#include <HLRAlgo_EdgeIterator.hxx>
#include <HLRBRep_BiPoint.hxx>
#include <HLRBRep_ListIteratorOfListOfBPoint.hxx>
#define PntX1 ((Standard_Real*)Coordinates)[0]
#define PntY1 ((Standard_Real*)Coordinates)[1]
#define PntZ1 ((Standard_Real*)Coordinates)[2]
#define PntX2 ((Standard_Real*)Coordinates)[3]
#define PntY2 ((Standard_Real*)Coordinates)[4]
#define PntZ2 ((Standard_Real*)Coordinates)[5]
//=======================================================================
//function : DBRep_HideData
//purpose :
//=======================================================================
DBRep_HideData::DBRep_HideData()
{}
//=======================================================================
//function : Set
//purpose :
//=======================================================================
void DBRep_HideData::Set(const Standard_Integer viewID,
const gp_Trsf& TProj,
const Standard_Real focal,
const TopoDS_Shape& S,
const Standard_Real ang)
{
myView = viewID;
myTrsf = TProj;
myFocal = focal;
myAngle = ang;
Handle(HLRBRep_PolyAlgo) hider = new HLRBRep_PolyAlgo(S);
hider->Angle(ang);
hider->Projector(HLRAlgo_Projector(myTrsf,myFocal > 0.,myFocal));
hider->Update();
Standard_Real sta,end,dx,dy,dz;
Standard_ShortReal tolsta,tolend;
HLRAlgo_EdgeIterator It;
myBiPntVis.Clear();
myBiPntHid.Clear();
TopoDS_Shape Sori;
Standard_Boolean reg1,regn,outl,intl;
Standard_Address Coordinates;
HLRAlgo_EdgeStatus status;
for (hider->InitHide(); hider->MoreHide(); hider->NextHide()) {
hider->Hide(Coordinates,status,Sori,reg1,regn,outl,intl);
dx = PntX2 - PntX1;
dy = PntY2 - PntY1;
dz = PntZ2 - PntZ1;
for (It.InitVisible(status);
It.MoreVisible();
It.NextVisible()) {
It.Visible(sta,tolsta,end,tolend);
myBiPntVis.Append
(HLRBRep_BiPoint
(PntX1 + sta * dx,PntY1 + sta * dy,PntZ1 + sta * dz,
PntX1 + end * dx,PntY1 + end * dy,PntZ1 + end * dz,
Sori,reg1,regn,outl,intl));
}
for (It.InitHidden(status);
It.MoreHidden();
It.NextHidden()) {
It.Hidden(sta,tolsta,end,tolend);
myBiPntHid.Append
(HLRBRep_BiPoint
(PntX1 + sta * dx,PntY1 + sta * dy,PntZ1 + sta * dz,
PntX1 + end * dx,PntY1 + end * dy,PntZ1 + end * dz,
Sori,reg1,regn,outl,intl));
}
}
}
//=======================================================================
//function : IsSame
//purpose :
//=======================================================================
Standard_Boolean DBRep_HideData::IsSame(const gp_Trsf& TProj,
const Standard_Real focal) const
{
if (focal > 0) {
if (myFocal <= 0) return Standard_False;
if (myFocal != focal) return Standard_False;
const gp_XYZ& T1 = TProj .TranslationPart();
const gp_XYZ& T2 = myTrsf.TranslationPart();
for (Standard_Integer i = 1; i <= 3; i++) {
if (T1.Coord(i) != T2.Coord(i))
return Standard_False;
}
}
const gp_Mat& M1 = TProj .HVectorialPart();
const gp_Mat& M2 = myTrsf.HVectorialPart();
for (Standard_Integer i = 1; i <= 3; i++) {
for (Standard_Integer j = 1; j <= 3; j++) {
if (M1.Value(i,j) != M2.Value(i,j))
return Standard_False;
}
}
return Standard_True;
}
//=======================================================================
//function : DrawOn
//purpose :
//=======================================================================
void DBRep_HideData::DrawOn(Draw_Display& D,
const Standard_Boolean withRg1,
const Standard_Boolean withRgN,
const Standard_Boolean withHid,
const Draw_Color& VisCol,
const Draw_Color& HidCol)
{
Standard_Boolean firstPick = Standard_True;
HLRBRep_ListIteratorOfListOfBPoint It;
// Standard_Boolean reg1,regn,outl;
if (withHid) {
D.SetColor(HidCol);
for (It.Initialize(myBiPntHid);
It.More();
It.Next()) {
const HLRBRep_BiPoint& BP = It.Value();
Standard_Boolean todraw = Standard_True;
if ((!withRg1 && BP.Rg1Line() && !BP.OutLine()) ||
(!withRgN && BP.RgNLine() && !BP.OutLine()))
todraw = Standard_False;
if (todraw) {
D.MoveTo(BP.P1());
D.DrawTo(BP.P2());
if (firstPick && D.HasPicked()) {
firstPick = Standard_False;
myPickShap = BP.Shape();
}
}
}
}
D.SetColor(VisCol);
for (It.Initialize(myBiPntVis);
It.More();
It.Next()) {
const HLRBRep_BiPoint& BP = It.Value();
Standard_Boolean todraw = Standard_True;
if ((!withRg1 && BP.Rg1Line() && !BP.OutLine()) ||
(!withRgN && BP.RgNLine() && !BP.OutLine()))
todraw = Standard_False;
if (todraw) {
D.MoveTo(BP.P1());
D.DrawTo(BP.P2());
if (firstPick && D.HasPicked()) {
firstPick = Standard_False;
myPickShap = BP.Shape();
}
}
}
}
//=======================================================================
//function : LastPick
//purpose :
//=======================================================================
const TopoDS_Shape & DBRep_HideData::LastPick () const
{ return myPickShap; }