Class MotionStatistics
Statistics about motion types in the piece.
public sealed class MotionStatistics
- Inheritance
-
MotionStatistics
- Inherited Members
Properties
Contrary
Number of contrary-motion transitions.
public int Contrary { get; init; }
Property Value
ContraryPercent
Percentage of transitions that are contrary motion.
public float ContraryPercent { get; }
Property Value
Oblique
Number of oblique-motion transitions.
public int Oblique { get; init; }
Property Value
ObliquePercent
Percentage of transitions that are oblique motion.
public float ObliquePercent { get; }
Property Value
Parallel
Number of parallel-motion transitions.
public int Parallel { get; init; }
Property Value
ParallelPercent
Percentage of transitions that are parallel motion.
public float ParallelPercent { get; }
Property Value
Similar
Number of similar-motion transitions.
public int Similar { get; init; }
Property Value
SimilarPercent
Percentage of transitions that are similar motion.
public float SimilarPercent { get; }
Property Value
Static
Number of static (no-movement) transitions.
public int Static { get; init; }
Property Value
Total
Total number of motion transitions counted.
public int Total { get; }