Branch data Line data Source code
1 : : //-------------------------------------------------------------------------
2 : : // Filename : PartitionLoop.hpp
3 : : //
4 : : // Purpose : LoopSM used by Partition geometry
5 : : //
6 : : // Special Notes :
7 : : //
8 : : // Creator : Jason Kraftcheck
9 : : //
10 : : // Creation Date : 01/11/02
11 : : //-------------------------------------------------------------------------
12 : :
13 : : #ifndef PARTITION_LOOP_HPP
14 : : #define PARTITION_LOOP_HPP
15 : :
16 : : #include "LoopSM.hpp"
17 : : #include "PartitionCoEdge.hpp"
18 : :
19 : : class PartitionLoop : public LoopSM
20 : : {
21 : : friend class PartitionSurface;
22 : : public:
23 : :
24 : : PartitionLoop( );
25 : : virtual ~PartitionLoop();
26 : :
27 : : PartitionSurface* get_surface() const;
28 : : //void surface( PartitionSurface* );
29 : :
30 : : virtual CubitBoolean is_external() ;
31 : : //R CubitBoolean
32 : : //R- CUBIT_TRUE/CUBIT_FALSE
33 : : //- Returns CUBIT_TRUE if the Loop is an external Loop and CUBIT_FALSE
34 : : //- otherwise.
35 : :
36 : : virtual LoopType loop_type() ;
37 : :
38 : : PartitionCoEdge* first_coedge( );
39 : : PartitionCoEdge* next_coedge( PartitionCoEdge* after_this );
40 : : PartitionCoEdge* prev_coedge( PartitionCoEdge* before_this );
41 : : int num_coedges();
42 : :
43 : : CubitStatus insert_after( PartitionCoEdge* coedge, PartitionCoEdge* after );
44 : : CubitStatus insert_before( PartitionCoEdge* coedge, PartitionCoEdge* before );
45 : : CubitStatus remove( PartitionCoEdge* coedge );
46 : : CubitStatus remove_all_coedges( DLIList<PartitionCoEdge*>* removed = 0);
47 : :
48 : : void get_parents_virt( DLIList<TopologyBridge*>& parents );
49 : : void get_children_virt( DLIList<TopologyBridge*>& children );
50 : : int layer() const ;
51 : : GeometryQueryEngine* get_geometry_query_engine() const;
52 : :
53 : : void append_simple_attribute_virt( const CubitSimpleAttrib& );
54 : : void remove_simple_attribute_virt( const CubitSimpleAttrib& );
55 : : void remove_all_simple_attribute_virt();
56 : : CubitStatus get_simple_attribute( DLIList<CubitSimpleAttrib>& );
57 : : CubitStatus get_simple_attribute( const CubitString&,
58 : : DLIList<CubitSimpleAttrib>& );
59 : :
60 : : void reverse();
61 : :
62 : : void print_debug_info( const char* line_prefix = 0 );
63 : :
64 : : private:
65 : :
66 : : PartitionLoop( const PartitionLoop& );
67 : :
68 : : PartitionSurface* mySurface;
69 : : PartitionCoEdge* firstCoedge;
70 : : PartitionLoop* nextInSurface;
71 : : int numCoedges;
72 : : };
73 : :
74 : 0 : inline PartitionSurface* PartitionLoop::get_surface() const
75 : 0 : { return mySurface; }
76 : :
77 : 0 : inline PartitionCoEdge* PartitionLoop::first_coedge( )
78 : 0 : { return firstCoedge; }
79 : :
80 : 0 : inline int PartitionLoop::num_coedges()
81 : 0 : { return numCoedges; }
82 : :
83 : 0 : inline PartitionCoEdge* PartitionLoop::next_coedge( PartitionCoEdge* prev )
84 [ # # ]: 0 : { return prev->myLoop == this ? prev->loopNext : 0; }
85 : :
86 : 0 : inline PartitionCoEdge* PartitionLoop::prev_coedge( PartitionCoEdge* next )
87 [ # # ]: 0 : { return next->myLoop == this ? next->loopPrev : 0; }
88 : :
89 : : #endif
|