From 7a931f280dda0004133f4db0fab2cd75d8d1731a Mon Sep 17 00:00:00 2001 From: skl Date: Wed, 1 Nov 2006 08:02:49 +0000 Subject: [PATCH] New version of PartitionAlgo. --- src/GEOM_SWIG/geompy.py | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/src/GEOM_SWIG/geompy.py b/src/GEOM_SWIG/geompy.py index 55f3659af..3a1672b95 100644 --- a/src/GEOM_SWIG/geompy.py +++ b/src/GEOM_SWIG/geompy.py @@ -1347,13 +1347,22 @@ def MakeSection(s1, s2): ## Perform partition operation. # @param ListShapes Shapes to be intersected. # @param ListTools Shapes to intersect theShapes. -# @param ListKeepInside Shapes, outside which the results will be deleted. +# !!!NOTE: shapes from this lists (for each separately) can not have +# intersections with each other. +# +# After implementation new version of PartitionAlgo (October 2006) +# other parameters are ignored by current functionality. They are kept +# in this function only for support old versions. +# Ignored parameters: +# @param ListKeepInside Shapes, outside which the results will be deleted. # Each shape from theKeepInside must belong to theShapes also. -# @param ListRemoveInside Shapes, inside which the results will be deleted. +# @param ListRemoveInside Shapes, inside which the results will be deleted. # Each shape from theRemoveInside must belong to theShapes also. -# @param Limit Type of resulting shapes (corresponding to TopAbs_ShapeEnum). -# @param RemoveWebs If TRUE, perform Glue 3D algorithm. -# @param ListMaterials Material indices for each shape. Make sence, only if theRemoveWebs is TRUE. +# @param Limit Type of resulting shapes (corresponding to TopAbs_ShapeEnum). +# @param RemoveWebs If TRUE, perform Glue 3D algorithm. +# @param ListMaterials Material indices for each shape. Make sence, +# only if theRemoveWebs is TRUE. +# # @return New GEOM_Object, containing the result shapes. # # Example: see GEOM_TestAll.py -- 2.39.2