PointFEvaluator Constructors

Definition

Overloads

PointFEvaluator()

Construct a PointFEvaluator that returns a new PointF on every evaluate call.

PointFEvaluator(PointF)

Constructs a PointFEvaluator that modifies and returns reuse in #evaluate(float, android.graphics.PointF, android.graphics.PointF) calls.

PointFEvaluator(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

PointFEvaluator()

Construct a PointFEvaluator that returns a new PointF on every evaluate call.

[Android.Runtime.Register(".ctor", "()V", "")]
public PointFEvaluator ();
Attributes

Remarks

Construct a PointFEvaluator that returns a new PointF on every evaluate call. To avoid creating an object for each evaluate call, PointFEvaluator#PointFEvaluator(android.graphics.PointF) should be used whenever possible.

Java documentation for android.animation.PointFEvaluator.PointFEvaluator().

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

PointFEvaluator(PointF)

Constructs a PointFEvaluator that modifies and returns reuse in #evaluate(float, android.graphics.PointF, android.graphics.PointF) calls.

[Android.Runtime.Register(".ctor", "(Landroid/graphics/PointF;)V", "")]
public PointFEvaluator (Android.Graphics.PointF? reuse);
[<Android.Runtime.Register(".ctor", "(Landroid/graphics/PointF;)V", "")>]
new Android.Animation.PointFEvaluator : Android.Graphics.PointF -> Android.Animation.PointFEvaluator

Parameters

reuse
PointF

A PointF to be modified and returned by evaluate.

Attributes

Remarks

Constructs a PointFEvaluator that modifies and returns reuse in #evaluate(float, android.graphics.PointF, android.graphics.PointF) calls. The value returned from #evaluate(float, android.graphics.PointF, android.graphics.PointF) should not be cached because it will change over time as the object is reused on each call.

Java documentation for android.animation.PointFEvaluator.PointFEvaluator(android.graphics.PointF).

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

PointFEvaluator(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

protected PointFEvaluator (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Animation.PointFEvaluator : nativeint * Android.Runtime.JniHandleOwnership -> Android.Animation.PointFEvaluator

Parameters

javaReference
IntPtr

nativeint

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

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