Skip to content

Commit

Permalink
update viz; fix types issue
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdsharpe committed Dec 24, 2023
1 parent 127c399 commit 027ac52
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion aerosandbox/dynamics/point_mass/common_point_mass.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ def draw(self,
(np.diff(x_e) ** 2 + np.diff(y_e) ** 2 + np.diff(z_e) ** 2) ** 0.5
)
vehicle_length = np.diff(vehicle_bounds[0, :])
scale_vehicle_model = 0.5 * path_length / vehicle_length / n_vehicles_to_draw
scale_vehicle_model = float(0.5 * path_length / vehicle_length / n_vehicles_to_draw)

### Initialize the plotter
if plotter is None:
Expand Down

Large diffs are not rendered by default.

0 comments on commit 027ac52

Please sign in to comment.