ArcMotion.MaximumAngle Property

Definition

Returns the maximum arc along the circle between two points. -or- Sets the maximum arc along the circle between two points.

public virtual float MaximumAngle { [Android.Runtime.Register("getMaximumAngle", "()F", "GetGetMaximumAngleHandler")] get; [Android.Runtime.Register("setMaximumAngle", "(F)V", "GetSetMaximumAngle_FHandler")] set; }
[<get: Android.Runtime.Register("getMaximumAngle", "()F", "GetGetMaximumAngleHandler")>]
[<set: Android.Runtime.Register("setMaximumAngle", "(F)V", "GetSetMaximumAngle_FHandler")>]
member this.MaximumAngle : single with get, set

Property Value

The maximum angle of the arc on a circle describing the Path between the start and end points.

Attributes

Remarks

Property getter documentation:

Returns the maximum arc along the circle between two points. When start and end points have close to equal x and y differences, the curve between them is large. This forces the curved path to have an arc of at most the given angle.

The default value is 70 degrees.

Java documentation for android.transition.ArcMotion.getMaximumAngle().

Property setter documentation:

Sets the maximum arc along the circle between two points. When start and end points have close to equal x and y differences, the curve between them is large. This forces the curved path to have an arc of at most the given angle.

The default value is 70 degrees.

Java documentation for android.transition.ArcMotion.setMaximumAngle(float).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to