PersistentTrails.RecordingThresholds.RecordingThresholds C# (CSharp) Method

RecordingThresholds() public method

public RecordingThresholds ( float minOrientationAngleChange, float minVelocityAngleChange, float minSpeedChangeFactor ) : System
minOrientationAngleChange float
minVelocityAngleChange float
minSpeedChangeFactor float
return System
        public RecordingThresholds(float minOrientationAngleChange, float minVelocityAngleChange, float minSpeedChangeFactor)
        {
            this.minOrientationAngleChange = minOrientationAngleChange;
            this.minVelocityAngleChange = minVelocityAngleChange;
            this.minSpeedChangeFactor = minSpeedChangeFactor;
        }
RecordingThresholds