adds initial rcs implementation
This commit is contained in:
11
common/src/command/set_rcs.rs
Normal file
11
common/src/command/set_rcs.rs
Normal 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 {}
|
||||
Reference in New Issue
Block a user