CircularArea class
A circular implementation of an Area. m is the middle point of your circle while r is the radius. If you have two points instead you can use CircularArea.fromPoints to generate it from two points instead.
Constructors
- CircularArea({required Point m, required double r})
-
CircularArea.fromJson(Map<
String, dynamic> json) - CircularArea.fromPoints({required Point m, required Point rPoint})
Properties
Methods
-
copy(
) → Area -
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
pointInArea(
Point point) → bool -
A method which checks if a certain
point
is in the Areaoverride -
toJson(
) → Map< String, dynamic> -
override
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited