smesh/src/Tools/blocFissure/gmu/prolongeWire.py

82 lines
2.7 KiB
Python
Raw Normal View History

2014-01-09 14:20:44 +00:00
# -*- coding: utf-8 -*-
2021-03-23 17:44:27 +03:00
# Copyright (C) 2014-2021 EDF R&D
2019-02-14 14:55:47 +03:00
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
#
2021-04-01 16:19:17 +02:00
"""Prolongation d'un wire par deux segments tangents"""
2014-01-09 14:20:44 +00:00
import logging
2021-04-01 16:19:17 +02:00
2017-03-20 13:27:30 +01:00
from .geomsmesh import geompy
from .geomsmesh import geomPublish
2021-04-01 16:19:17 +02:00
2017-03-20 13:27:30 +01:00
from . import initLog
2014-01-09 14:20:44 +00:00
2021-04-01 16:19:17 +02:00
from .orderEdgesFromWire import orderEdgesFromWire
2014-01-09 14:20:44 +00:00
2021-04-01 16:19:17 +02:00
def prolongeWire(aWire, extrem, norms, longueur):
"""Prolongation d'un wire par deux segments tangents"""
2014-01-09 14:20:44 +00:00
logging.info("start")
2021-04-01 16:19:17 +02:00
if ( geompy.NumberOfEdges(aWire) > 1 ):
2014-01-09 14:20:44 +00:00
edges = geompy.ExtractShapes(aWire, geompy.ShapeType["EDGE"])
uneSeuleEdge = False
2014-01-09 14:20:44 +00:00
else:
edges = [aWire]
uneSeuleEdge = True
2021-04-01 16:19:17 +02:00
edgesBout = list()
for i_aux, v_1 in enumerate(extrem):
exts = [geompy.MakeTranslationVectorDistance(v_1, norms[i_aux], lg_aux) for lg_aux in (-longueur, longueur)]
dists = [(geompy.MinDistance(v, aWire), j_aux , v) for j_aux, v in enumerate(exts)]
2014-01-09 14:20:44 +00:00
dists.sort()
2021-04-01 16:19:17 +02:00
v_2 = dists[-1][-1]
edge = geompy.MakeEdge(v_1, v_2)
2014-01-09 14:20:44 +00:00
edges.append(edge)
edgesBout.append(edge)
2021-04-01 16:19:17 +02:00
name = "extrem{}".format(i_aux)
2014-12-10 17:37:21 +01:00
geomPublish(initLog.debug, edge, name)
2021-04-01 16:19:17 +02:00
try:
wireProlonge = geompy.MakeWire(edges)
2014-12-10 17:37:21 +01:00
geomPublish(initLog.debug, wireProlonge, "wireProlonge")
except:
logging.warning("probleme MakeWire, approche pas a pas")
if uneSeuleEdge:
edgelist = [aWire]
accessList = [0]
else:
edgelist, accessList = orderEdgesFromWire(aWire)
edge1 = edgelist[accessList[0]]
if geompy.MinDistance(edgesBout[0], edge1) < 1.e-4 :
2021-04-01 16:19:17 +02:00
i_0 = 0
i_1 = 1
else:
2021-04-01 16:19:17 +02:00
i_0 = 1
i_1 = 0
wireProlonge = edgesBout[i_0]
for i_aux in range(len(edgelist)):
wireProlonge = geompy.MakeWire([wireProlonge, edgelist[accessList[i_aux]]])
geomPublish(initLog.debug, wireProlonge, "wireProlonge_{}".format(i_aux))
wireProlonge = geompy.MakeWire([wireProlonge,edgesBout[i_1]])
2014-12-10 17:37:21 +01:00
geomPublish(initLog.debug, wireProlonge, "wireProlonge")
logging.warning("prolongation wire pas a pas OK")
2021-04-01 16:19:17 +02:00
2014-01-09 14:20:44 +00:00
return wireProlonge