adds initial rcs implementation

This commit is contained in:
2026-01-05 20:26:54 -05:00
parent 252db5993d
commit 98541737a1
23 changed files with 1490 additions and 229 deletions

View File

@@ -0,0 +1,11 @@
use crate::command::Command;
use crate::math::Vector;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct SetRcs {
pub translation: Vector,
pub rotation: Vector,
}
impl Command for SetRcs {}