Skip to content

Commit 166a6dc

Browse files
committed
fix bug for singleton dyns
1 parent f75c26e commit 166a6dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aerosandbox/dynamics/point_mass/common_point_mass.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -612,8 +612,8 @@ def draw(self,
612612
if draw_ground_plane:
613613
### Plane
614614
grid = pv.StructuredGrid()
615-
xlim = (self.x_e.min(), self.x_e.max())
616-
ylim = (self.y_e.min(), self.y_e.max())
615+
xlim = (x_e.min(), x_e.max())
616+
ylim = (y_e.min(), y_e.max())
617617

618618
grid.points = np.array([
619619
[xlim[0], ylim[0], 0],

0 commit comments

Comments
 (0)