示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LogarithmicSpiralParametricDoubleComponents" /> class.
 /// </summary>
 /// <param name="parent">The parent.</param>
 public LogarithmicSpiralParametricDoubleComponents(LogarithmicSpiralCurve parent) : base(parent)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="LogarithmicSpiralParametricX" /> class.
 /// </summary>
 /// <param name="parent">The parent.</param>
 public LogarithmicSpiralParametricY(LogarithmicSpiralCurve parent) : base(parent)
 {
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LogarithmicSpiralCurveParametric" /> class.
 /// </summary>
 /// <param name="parent">The parent object whose properties are used in the associated parametric equations.</param>
 public LogarithmicSpiralCurveParametric(LogarithmicSpiralCurve parent)
 {
     _x = new LogarithmicSpiralParametricX(parent);
     _y = new LogarithmicSpiralParametricY(parent);
 }