Searched defs:PointF (Results 1 – 5 of 5) sorted by relevance
27 public class PointF implements Parcelable { class31 public PointF() {} in PointF() method in PointF33 public PointF(float x, float y) { in PointF() method in PointF38 public PointF(@NonNull Point p) { in PointF() method in PointF50 public PointF(@NonNull PointF p) { in PointF() method in PointF
35 struct PointF { struct38 auto operator<=>(const PointF&) const = default; argument
632 @Nullable TypeConverter<PointF, ?> converter, Path path) { in ofObject()723 @Nullable TypeConverter<PointF, V> converter, Path path) { in ofObject()
428 TypeConverter<PointF, ?> converter, Path path) { in ofObject()513 TypeConverter<PointF, V> converter, Path path) { in ofObject()
65 private fun PointF.nearEq(other: PointF) = this.x.nearEq(other.x) && this.y.nearEq(other.y) in Float() method