mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-07 18:30:55 +03:00
110 lines
2.0 KiB
C++
Executable File
110 lines
2.0 KiB
C++
Executable File
|
|
// File Visual3d_ContextPick.cxx
|
|
// Created Fevrier 1992
|
|
// Author NW,JPB,CAL
|
|
|
|
//-Copyright MatraDatavision 1991,1992
|
|
|
|
//-Version
|
|
|
|
//-Design Declaration des variables specifiques aux contextes
|
|
// de reperage.
|
|
|
|
//-Warning Un contexte de reperage est defini par :
|
|
// - l'ouverture de la fenetre
|
|
// - la profondeur demandee
|
|
// - l'ordre de parcours des structures
|
|
|
|
//-References
|
|
|
|
//-Language C++ 2.0
|
|
|
|
//-Declarations
|
|
|
|
// for the class
|
|
#include <Visual3d_ContextPick.ixx>
|
|
|
|
//-Aliases
|
|
|
|
//-Global data definitions
|
|
|
|
// -- ouverture ou taille de la fenetre de reperage
|
|
// MyAperture : Standard_Real;
|
|
|
|
// -- profondeur ou nombre de structures a reperer
|
|
// MyDepth : Standard_Integer;
|
|
|
|
// -- ordre de parcours des structures reperees
|
|
// MyOrder : TypeOfOrder;
|
|
|
|
//-Constructors
|
|
|
|
//-Destructors
|
|
|
|
//-Methods, in order
|
|
|
|
Visual3d_ContextPick::Visual3d_ContextPick ():
|
|
MyAperture (4.0),
|
|
MyDepth (10),
|
|
MyOrder (Visual3d_TOO_TOPFIRST) {
|
|
}
|
|
|
|
Visual3d_ContextPick::Visual3d_ContextPick (const Standard_Real Aperture, const Standard_Integer Depth, const Visual3d_TypeOfOrder Order):
|
|
MyAperture (Aperture),
|
|
MyDepth (Depth),
|
|
MyOrder (Order) {
|
|
|
|
if (Aperture <= 0.0)
|
|
Visual3d_ContextPickDefinitionError::Raise
|
|
("Bad value for PickAperture");
|
|
|
|
if (Depth <= 0)
|
|
Visual3d_ContextPickDefinitionError::Raise
|
|
("Bad value for PickDepth");
|
|
|
|
}
|
|
|
|
void Visual3d_ContextPick::SetAperture (const Standard_Real Aperture) {
|
|
|
|
if (Aperture <= 0.0)
|
|
Visual3d_ContextPickDefinitionError::Raise
|
|
("Bad value for PickAperture");
|
|
|
|
MyAperture = Aperture;
|
|
|
|
}
|
|
|
|
Standard_Real Visual3d_ContextPick::Aperture () const {
|
|
|
|
return (MyAperture);
|
|
|
|
}
|
|
|
|
void Visual3d_ContextPick::SetDepth (const Standard_Integer Depth) {
|
|
|
|
if (Depth <= 0)
|
|
Visual3d_ContextPickDefinitionError::Raise
|
|
("Bad value for PickDepth");
|
|
|
|
MyDepth = Depth;
|
|
|
|
}
|
|
|
|
Standard_Integer Visual3d_ContextPick::Depth () const {
|
|
|
|
return (MyDepth);
|
|
|
|
}
|
|
|
|
void Visual3d_ContextPick::SetOrder (const Visual3d_TypeOfOrder Order) {
|
|
|
|
MyOrder = Order;
|
|
|
|
}
|
|
|
|
Visual3d_TypeOfOrder Visual3d_ContextPick::Order () const {
|
|
|
|
return (MyOrder);
|
|
|
|
}
|