You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
compas_occ now needs to specify the pythonocc-core version, otherwise some old functions complain:
compas_occ\brep\brepedge.py:133: DeprecationWarning: Call to deprecated functiontopods_Edge since pythonocc-core 7.7.1. This functionwill be removed in a future release, please rather use the static method topods.Edge
self._occ_edge = topods_Edge(edge)
compas_occ\brep\brep.py", line 938, in to_viewmesh lines.append(Polyline(edge.curve.locus())) AttributeError: 'OCCCurve' object has no attribute 'locus'
compas_occ\brep\brepvertex.py:70: DeprecationWarning: Call to deprecated functionBRep_Tool_Pnt since pythonocc-core 7.7.1. This functionwill be removed in a future release, please rather use the static method BRep_Tool.Pnt
etc ....
The text was updated successfully, but these errors were encountered:
ZacZhangzhuo
changed the title
pythonocc-core version specificationpythonocc-core deprecation warning and version specification
Jan 6, 2024
also, from v.7.5.1, pythonocc-core added a feature of display: display OpenGl information by default in OCCViewer. We should ether integrate this into our viewer or limit the version under 7.5.1 for lighter dependency..
compas_occ
now needs to specify thepythonocc-core
version, otherwise some old functions complain:etc ....
The text was updated successfully, but these errors were encountered: