[cgma-dev] r5276 - cgm/trunk/geom/ACIS_SRC

jiangtao_ma at yahoo.com jiangtao_ma at yahoo.com
Wed Dec 21 11:50:25 CST 2011


Author: janehu
Date: 2011-12-21 11:50:24 -0600 (Wed, 21 Dec 2011)
New Revision: 5276

Modified:
   cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.cpp
   cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.hpp
Log:
Corresponding change to r5273.

Modified: cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.cpp
===================================================================
--- cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.cpp	2011-12-21 17:48:23 UTC (rev 5275)
+++ cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.cpp	2011-12-21 17:50:24 UTC (rev 5276)
@@ -15352,7 +15352,7 @@
 
 Curve*
 AcisModifyEngine::create_arc_three( Point* vertex1, Point* vertex2,
-                                      Point *vertex3, bool full )
+                                      Point *vertex3, bool full )const
 {
   CubitVector vec1 = vertex1->coordinates();
   CubitVector vec2 = vertex2->coordinates();
@@ -15398,7 +15398,7 @@
 
 Curve*
 AcisModifyEngine::create_arc_three( Curve* ref_edge1, Curve* ref_edge2,
-                                      Curve *ref_edge3, bool full )
+                                      Curve *ref_edge3, bool full )const
 {
   EDGE* EDGE_ptr1 = AcisQueryEngine::get_EDGE( ref_edge1 );
   EDGE* EDGE_ptr2 = AcisQueryEngine::get_EDGE( ref_edge2 );
@@ -15428,7 +15428,7 @@
 Curve*
 AcisModifyEngine::create_arc_center_edge( Point* vertex1, Point* vertex2,
                                           Point *vertex3, const CubitVector &normal,
-                                          double radius, bool full )
+                                          double radius, bool full )const
 {
   CubitVector vec1 = vertex1->coordinates(); // Center of arc
   CubitVector vec2 = vertex2->coordinates(); // Position on arc

Modified: cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.hpp
===================================================================
--- cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.hpp	2011-12-21 17:48:23 UTC (rev 5275)
+++ cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.hpp	2011-12-21 17:50:24 UTC (rev 5276)
@@ -1020,17 +1020,17 @@
   Curve* create_arc_three( Point* ref_vertex1, 
                            Point* ref_vertex2,
                            Point* ref_vertex3, 
-                           bool full = false );
+                           bool full = false )const;
   Curve* create_arc_three( Curve* ref_edge1,
                            Curve* ref_edge2,
                            Curve* ref_edge3, 
-                           bool full = false );
+                           bool full = false )const;
   Curve* create_arc_center_edge( Point* ref_vertex1, 
                                  Point* ref_vertex2,
                                  Point* ref_vertex3, 
                                  const CubitVector &normal,


More information about the cgma-dev mailing list