public static LitQuad LitQuadFromStrip(Strip strip, int horizontalLocation) { return(new LitQuad(Quad.QuadFromStrip(strip, horizontalLocation), LightCorners.LightCornersFromRangeTopBottom(strip.range))); }
public LitQuad(Quad _quad) { this = new LitQuad(_quad, LightCorners.MaxLightLightCorners()); }
// public LightCorners lightCorners; public LitQuad(Quad _quad, LightCorners _lightCorners) { quad = _quad; // lightCorners = _lightCorners; }
public static LightCorners CombineHorizontally(LightCorners left, LightCorners right) { return(new LightCorners(left.oo, right.mo, left.om, right.mm)); }
public LightCorners(byte _top, byte _bottom) { this = new LightCorners(_top, _top, _bottom, _bottom); }
// public LightCorners(byte nothing) // { // this = new LightCorners(nothing,nothing,nothing,nothing); // } public LightCorners(byte _all_values) { this = new LightCorners(_all_values, _all_values, _all_values, _all_values); }