Skip to content

Commit

Permalink
update example
Browse files Browse the repository at this point in the history
  • Loading branch information
ATTron committed Jul 8, 2024
1 parent 7b03c2b commit cd74ae8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ pub fn main() !void {
defer test_sc.deinit();
const impulses = [_]Impulse{
.{ .time = 3600.0, .delta_v = .{ 0.05, 0.03, 0.01 } },
.{ .time = 7200.0, .delta_v = .{ 1.1, -0.05, 0.02 } },
.{ .time = 10800.0, .delta_v = .{ -0.03, 0.08, -0.01 } },
.{ .time = 3600.0, .delta_v = .{ 0.05, 0.03, 0.01 }, .mode = .Absolute },
.{ .time = 7200.0, .delta_v = .{ 1.1, -0.05, 0.02 }, .mode = .Absolute },
.{ .time = 10800.0, .delta_v = .{ -0.03, 0.08, -0.01 }, .mode = .Absolute },
};
try test_sc.propagate(
Expand Down

0 comments on commit cd74ae8

Please sign in to comment.