namespace Cryville.Crtr { public struct Clip { public float Behind { get; set; } public float Ahead { get; set; } public Clip(float behind, float ahead) { Behind = behind; Ahead = ahead; } } }