3 instantiations of ContourPoint
System.Speech (3)
Internal\Synthesis\SSmlParser.cs (3)
1560points.Add(new ContourPoint(0, target.Number, ContourPointChangeType.Hz)); 1575points.Add(new ContourPoint(timePosition.Number, target.Number, (hz ? ContourPointChangeType.Hz : ContourPointChangeType.Percentage))); 1593points.Add(new ContourPoint(1, points[points.Count - 1].Change, points[points.Count - 1].ChangeType));
13 references to ContourPoint
System.Speech (13)
Internal\Synthesis\SSmlParser.cs (2)
1520private static ContourPoint[]? ParseContour(string contour) 1523List<ContourPoint> points = new();
Synthesis\TTSEngine\TTSEngineTypes.cs (11)
281public ContourPoint[]? GetContourPoints() { return _contourPoints; } 282public void SetContourPoints(ContourPoint[] points) 286_contourPoints = (ContourPoint[])points.Clone(); 312internal ContourPoint[]? _contourPoints; 316public struct ContourPoint : IEquatable<ContourPoint> 327public static bool operator ==(ContourPoint point1, ContourPoint point2) 331public static bool operator !=(ContourPoint point1, ContourPoint point2) 335public bool Equals(ContourPoint other) 341if (obj is not ContourPoint cp)