0023830: BRepExtrema_DistShapeShape does not find intersection of face with edge
[occt.git] / src / Xw / Xw_isdefine_marker.cxx
1 // Copyright (c) 1999-2012 OPEN CASCADE SAS
2 //
3 // The content of this file is subject to the Open CASCADE Technology Public
4 // License Version 6.5 (the "License"). You may not use the content of this file
5 // except in compliance with the License. Please obtain a copy of the License
6 // at http://www.opencascade.org and read it completely before using this file.
7 //
8 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
9 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
10 //
11 // The Original Code and all software distributed under the License is
12 // distributed on an "AS IS" basis, without warranty of any kind, and the
13 // Initial Developer hereby disclaims all such warranties, including without
14 // limitation, any warranties of merchantability, fitness for a particular
15 // purpose or non-infringement. Please see the License for the specific terms
16 // and conditions governing the rights and limitations under the License.
17
18
19 #include <Xw_Extension.h>
20
21 /* ifdef then trace on */
22 #ifdef TRACE
23 #define TRACE_ISDEFINE_MARKER
24 #endif
25
26 /*
27    XW_STATUS Xw_isdefine_marker (amarkmap,index):
28    XW_EXT_MARKMAP *amarkmap
29    int index                    marker index
30
31         Returns XW_ERROR if BadMarker Index or marker is not defined
32         Returns XW_SUCCESS if Successful      
33
34 */
35 #ifdef XW_PROTOTYPE
36 XW_STATUS Xw_isdefine_marker (void *amarkmap,int index)
37 #else
38 XW_STATUS Xw_isdefine_marker (amarkmap,index)
39 void *amarkmap;
40 int index ;
41 #endif /*XW_PROTOTYPE*/
42 {
43 XW_EXT_MARKMAP *pmarkmap = (XW_EXT_MARKMAP*) amarkmap;
44 XW_STATUS status = XW_ERROR ;
45
46         if( index > 0 ) {
47             if ( pmarkmap && (index < pmarkmap->maxmarker) &&
48                                 (pmarkmap->npoint[index] > 0) ) {
49                 return (XW_SUCCESS) ;
50             } 
51         } else status = XW_SUCCESS ;
52
53
54 #ifdef  TRACE_ISDEFINE_MARKER
55 if( Xw_get_trace() > 2 ) {
56     printf (" %d = Xw_isdefine_marker(%lx,%d)\n",status,(long ) pmarkmap,index) ;
57 }
58 #endif
59
60         return (status);
61 }
62
63 #ifdef XW_PROTOTYPE
64 XW_STATUS Xw_isdefine_markerindex (XW_EXT_MARKMAP *amarkmap,int index)
65 #else
66 XW_STATUS Xw_isdefine_markerindex (amarkmap,index)
67 XW_EXT_MARKMAP *amarkmap;
68 int index ;
69 #endif /*XW_PROTOTYPE*/
70 /*
71         Verify Marker range index Only
72 */
73 {
74 XW_EXT_MARKMAP *pmarkmap = amarkmap;
75 XW_STATUS status = XW_ERROR ;
76
77         if( pmarkmap && (index > 0) && (index < pmarkmap->maxmarker) ) {
78             return (XW_SUCCESS) ;
79         }
80
81 #ifdef  TRACE_ISDEFINE_MARKER
82 if( Xw_get_trace() > 2 ) {
83     printf (" %d = Xw_isdefine_markerindex(%lx,%d)\n",status,(long ) pmarkmap,index) ;
84 }
85 #endif
86         return (status) ;
87 }