mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-07-09 11:57:58 +08:00
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.
73 lines
2.6 KiB
Plaintext
73 lines
2.6 KiB
Plaintext
-- Created on: 1998-03-26
|
|
-- Created by: Robert COUBLANC
|
|
-- Copyright (c) 1998-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.
|
|
|
|
private class SortCriterion from SelectMgr
|
|
|
|
---Purpose: This class provides data and criterion for sorting candidate
|
|
-- entities in the process of interactive selection by mouse click
|
|
|
|
is
|
|
Create returns SortCriterion from SelectMgr;
|
|
|
|
Create(thePriority: Integer from Standard;
|
|
theDepth, theMinDist, theTol: Real from Standard;
|
|
PreferClosest: Boolean from Standard)
|
|
returns SortCriterion from SelectMgr;
|
|
---Purpose: Defines parameters of selection criterion:
|
|
-- - Priority: selection priority
|
|
-- - Depth: distance from the view plane to the entity
|
|
-- - MinDist: distance from the clicked point to the entity on the view plane
|
|
-- - Tol: tolerance used for selecting candidates
|
|
-- - PreferClosest: specify whether closest object is preferred even if
|
|
-- if has less priority
|
|
|
|
SetPriority (me : in out; P:Integer from Standard);
|
|
---C++: inline
|
|
SetDepth (me : in out; D:Real from Standard);
|
|
---C++: inline
|
|
SetMinDist (me : in out; D:Real from Standard);
|
|
---C++: inline
|
|
SetTol (me : in out; T:Real from Standard);
|
|
---C++: inline
|
|
|
|
Priority(me) returns Integer from Standard;
|
|
---C++: inline
|
|
Depth(me) returns Real from Standard;
|
|
---C++: inline
|
|
MinDist(me) returns Real from Standard;
|
|
---C++: inline
|
|
Tol(me) returns Real from Standard;
|
|
---C++: inline
|
|
|
|
|
|
IsGreater(me;anOtherCriterion:SortCriterion from SelectMgr)
|
|
returns Boolean from Standard;
|
|
---C++: alias operator >
|
|
|
|
IsLower(me;anOtherCriterion:SortCriterion from SelectMgr)
|
|
returns Boolean from Standard;
|
|
---C++: alias operator <
|
|
|
|
|
|
fields
|
|
myPrior: Integer from Standard;
|
|
myDepth: Real from Standard;
|
|
myDist : Real from Standard;
|
|
myTol : Real from Standard;
|
|
myPreferClosest: Boolean from Standard;
|
|
|
|
end SortCriterion;
|