#region --- License --- /* Licensed under the MIT/X11 license. * Copyright (c) 2006-2008 the OpenTK Team. * This notice may not be removed from any source distribution. * See license.txt for licensing detailed licensing details. * * Contributions by Georg W�chter. */ #endregion using System; using System.Collections.Generic; using System.Text; namespace OpenTK { /// /// Represents a quadric bezier curve with two anchor and one control point. /// [Serializable] public struct BezierCurveQuadric { #region Fields /// /// Start anchor point. /// public Vector2 StartAnchor; /// /// End anchor point. /// public Vector2 EndAnchor; /// /// Control point, controls the direction of both endings of the curve. /// public Vector2 ControlPoint; /// /// The parallel value. /// /// This value defines whether the curve should be calculated as a /// parallel curve to the original bezier curve. A value of 0.0f represents /// the original curve, 5.0f i.e. stands for a curve that has always a distance /// of 5.f to the orignal curve at any point. public float Parallel; #endregion #region Constructors /// /// Constructs a new . /// /// The start anchor. /// The end anchor. /// The control point. public BezierCurveQuadric(Vector2 startAnchor, Vector2 endAnchor, Vector2 controlPoint) { this.StartAnchor = startAnchor; this.EndAnchor = endAnchor; this.ControlPoint = controlPoint; this.Parallel = 0.0f; } /// /// Constructs a new . /// /// The parallel value. /// The start anchor. /// The end anchor. /// The control point. public BezierCurveQuadric(float parallel, Vector2 startAnchor, Vector2 endAnchor, Vector2 controlPoint) { this.Parallel = parallel; this.StartAnchor = startAnchor; this.EndAnchor = endAnchor; this.ControlPoint = controlPoint; } #endregion #region Functions /// /// Calculates the point with the specified t. /// /// The t value, between 0.0f and 1.0f. /// Resulting point. public Vector2 CalculatePoint(float t) { Vector2 r = new Vector2(); float c = 1.0f - t; r.X = (c * c * StartAnchor.X) + (2 * t * c * ControlPoint.X) + (t * t * EndAnchor.X); r.Y = (c * c * StartAnchor.Y) + (2 * t * c * ControlPoint.Y) + (t * t * EndAnchor.Y); if (Parallel == 0.0f) return r; Vector2 perpendicular = new Vector2(); if (t == 0.0f) perpendicular = ControlPoint - StartAnchor; else perpendicular = r - CalculatePointOfDerivative(t); return r + Vector2.Normalize(perpendicular).PerpendicularRight * Parallel; } /// /// Calculates the point with the specified t of the derivative of this function. /// /// The t, value between 0.0f and 1.0f. /// Resulting point. private Vector2 CalculatePointOfDerivative(float t) { Vector2 r = new Vector2(); r.X = (1.0f - t) * StartAnchor.X + t * ControlPoint.X; r.Y = (1.0f - t) * StartAnchor.Y + t * ControlPoint.Y; return r; } /// /// Calculates the length of this bezier curve. /// /// The precision. /// Length of curve. /// The precision gets better when the /// value gets smaller. public float CalculateLength(float precision) { float length = 0.0f; Vector2 old = CalculatePoint(0.0f); for (float i = precision; i < (1.0f + precision); i += precision) { Vector2 n = CalculatePoint(i); length += (n - old).Length; old = n; } return length; } #endregion } }