Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Point object #3581

Merged
merged 4 commits into from
Sep 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions pyaedt/modeler/cad/Primitives.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ def point_objects(self):
list of :class:`pyaedt.modeler.cad.object3d.Object3d`
3D object.
"""
return [v for v in list(self.points.values())]
self._refresh_points()
return [self.points[name] for name in self._points]

@property
def unclassified_objects(self):
Expand All @@ -135,7 +136,7 @@ def object_list(self):
3D object.
"""
self._refresh_object_types()
return [self[name] for name in self._all_object_names if name is not None]
return [self[name] for name in self._all_object_names if name is not None and name not in self.point_names]

@property
def solid_names(self):
Expand Down
Loading