Neodroid  0.2.0
Machine Learning Environment Prototyping Tool
IHasEulerTransform.cs
Go to the documentation of this file.
2 using UnityEngine;
3 
4 namespace droid.Runtime.Interfaces {
7  public interface IHasEulerTransform {
10  Vector3 Position { get; }
11 
14  Vector3 Direction { get; }
15 
18  Vector3 Rotation { get; }
19 
22  Space3 PositionSpace { get; }
23 
26  Space3 DirectionSpace { get; }
27 
30  Space3 RotationSpace { get; }
31  }
32 }