[cgma-dev] r2744 - cgm/trunk/geom/ACIS_SRC
jiangtao_ma at yahoo.com
jiangtao_ma at yahoo.com
Tue Mar 24 14:23:54 CDT 2009
Author: janehu
Date: 2009-03-24 14:23:54 -0500 (Tue, 24 Mar 2009)
New Revision: 2744
Modified:
cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.cpp
cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.hpp
Log:
Don't need the tweak fillet or chamfer function const.
Modified: cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.cpp
===================================================================
--- cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.cpp 2009-03-24 19:21:42 UTC (rev 2743)
+++ cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.cpp 2009-03-24 19:23:54 UTC (rev 2744)
@@ -1382,7 +1382,7 @@
DLIList<BodySM*> &new_bodysm_list,
double right_offset,
CubitBoolean keep_old_body,
- CubitBoolean preview ) const
+ CubitBoolean preview )
{
return AcisTweakTool::instance()->tweak_chamfer( curve_list, left_offset,
new_bodysm_list, right_offset, keep_old_body, preview );
@@ -1409,7 +1409,7 @@
double offset3,
Curve *edge3,
CubitBoolean keep_old_body,
- CubitBoolean preview ) const
+ CubitBoolean preview )
{
return AcisTweakTool::instance()->tweak_chamfer( ref_vertex_list, offset1,
new_bodysm_list, edge1, offset2, edge2, offset3, edge3, keep_old_body,
@@ -1428,7 +1428,7 @@
double radius,
DLIList<BodySM*> &new_bodysm_list,
CubitBoolean keep_old_body,
- CubitBoolean preview ) const
+ CubitBoolean preview )
{
return AcisTweakTool::instance()->tweak_fillet( curve_list, radius,
new_bodysm_list, keep_old_body, preview );
@@ -1448,7 +1448,7 @@
double end_radius,
BodySM *&new_bodysm_ptr,
CubitBoolean keep_old_body,
- CubitBoolean preview ) const
+ CubitBoolean preview )
{
return AcisTweakTool::instance()->tweak_fillet( curve_ptr, start_radius,
end_radius, new_bodysm_ptr, keep_old_body, preview );
@@ -1467,7 +1467,7 @@
double radius,
DLIList<BodySM*> &new_bodysm_list,
CubitBoolean keep_old_body,
- CubitBoolean preview ) const
+ CubitBoolean preview )
{
return AcisTweakTool::instance()->tweak_fillet( ref_vertex_list, radius,
new_bodysm_list, keep_old_body, preview );
Modified: cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.hpp
===================================================================
--- cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.hpp 2009-03-24 19:21:42 UTC (rev 2743)
+++ cgm/trunk/geom/ACIS_SRC/AcisModifyEngine.hpp 2009-03-24 19:23:54 UTC (rev 2744)
@@ -998,7 +998,7 @@
DLIList<BodySM*> &new_bodysm_list,
double right_offset = -1.0,
CubitBoolean keep_old_body = CUBIT_FALSE,
- CubitBoolean preview = CUBIT_FALSE ) const;
+ CubitBoolean preview = CUBIT_FALSE ) ;
/**< Chamfer curves on solid bodies. The left and right offsets are with
* respect to the curve direction. If the given right offset is negative,
* the left offset is used. Users can preview to clarify the meaning of
@@ -1014,7 +1014,7 @@
double offset3 = -1.0,
Curve *edge3 = NULL,
CubitBoolean keep_old_body = CUBIT_FALSE,
- CubitBoolean preview = CUBIT_FALSE ) const;
+ CubitBoolean preview = CUBIT_FALSE ) ;
/**< Chamfer vertices on solid or sheet bodies. On a solid body there can
* be up to 3 offsets; on a sheet body up to 2 offsets. The offsets are
* in the direction of the supplied edges. If multiple vertices are
@@ -1025,7 +1025,7 @@
double radius,
DLIList<BodySM*> &new_bodysm_list,
CubitBoolean keep_old_body = CUBIT_FALSE,
- CubitBoolean preview = CUBIT_FALSE ) const;
+ CubitBoolean preview = CUBIT_FALSE ) ;
/**< Create a round fillet (or blend) at the given curves on solid bodies.
*/
@@ -1034,7 +1034,7 @@
double end_radius,
BodySM *&new_body_ptr,
CubitBoolean keep_old_body = CUBIT_FALSE,
- CubitBoolean preview = CUBIT_FALSE ) const;
+ CubitBoolean preview = CUBIT_FALSE ) ;
/**< Create a round fillet (or blend) at the given curve on a solid body.
* The fillet has a variable radius from the start to the end of the curve.
*/
@@ -1043,7 +1043,7 @@
double radius,
DLIList<BodySM*> &new_bodysm_list,
CubitBoolean keep_old_body = CUBIT_FALSE,
- CubitBoolean preview = CUBIT_FALSE ) const;
+ CubitBoolean preview = CUBIT_FALSE ) ;
/**< Create a round fillet (or blend) at the given vertices on sheet bodies.
*/
More information about the cgma-dev
mailing list