Example #1
0
        public float MaxX()
        {
            Surface next = NextSurface();

            if (next != null)
            {
                return(next.MaxX() - Model.MullionType.ProfileType.Thickness);
            }

            return(-1);
        }
Example #2
0
 /// <summary>
 /// The maximum X coordinate of the aFrame
 /// </summary>
 /// <returns></returns>
 public double MaxX()
 {
     return(Surface.MaxX() - FrameThickness - 1);
 }