Home
last modified time | relevance | path

Searched refs:Orientation (Results 1 – 7 of 7) sorted by relevance

/tools/netsim/ui/ts/netsim/
Dmodel.ts37 export interface Orientation { interface
253 orientation:|Orientation|undefined;
269 orientation:|Orientation|undefined;
/tools/netsim/proto/netsim/
Dmodel.proto34 // A 3D orientation. A valid Orientation must have yaw, pitch, and roll.
36 message Orientation { message
246 // Orientation of Device
247 Orientation orientation = 5;
260 // Orientation of Device
261 Orientation orientation = 3;
/tools/netsim/guide/src/ui/
DREADME.md20 ## Changing Device Orientation
22 <br><img src="assets/orientation.gif" alt="Orientation GIF" width="500" /><br>
24 2. On the **Device Info** panel, change the **Orientation** by moving around the range inputs.
/tools/netsim/rust/proto/src/
Dmodel.rs188 pub struct Orientation { struct
201 impl<'a> ::std::default::Default for &'a Orientation { implementation
202 fn default() -> &'a Orientation { in default()
203 <Orientation as ::protobuf::Message>::default_instance() in default()
207 impl Orientation { impl
208 pub fn new() -> Orientation { in new()
217 |m: &Orientation| { &m.yaw }, in generated_message_descriptor_data()
218 |m: &mut Orientation| { &mut m.yaw }, in generated_message_descriptor_data()
222 |m: &Orientation| { &m.pitch }, in generated_message_descriptor_data()
223 |m: &mut Orientation| { &mut m.pitch }, in generated_message_descriptor_data()
[all …]
/tools/netsim/testing/netsim-grpc/src/netsim_grpc/
Dnetsim_client.py61 orientation: Optional[model.Orientation] = None, argument
/tools/netsim/rust/daemon/src/devices/
Ddevice.rs25 use netsim_proto::model::Orientation as ProtoOrientation;
Ddevices_handler.rs874 Device as ProtoDevice, DeviceCreate as ProtoDeviceCreate, Orientation as ProtoOrientation,