geometry_kit 1.0.0-dev copy "geometry_kit: ^1.0.0-dev" to clipboard
geometry_kit: ^1.0.0-dev copied to clipboard

A set of utils that help with geometry (line, circle, triangle, polygon,...)

example/geometry_kit_example.dart

import 'package:geometry_kit/geometry_kit.dart';

void main() {
  //Polygon
  final polygon = Polygon([
    Point(1, 0),
    Point(0, 2),
    Point(0, 3),
    Point(2, 5),
    Point(3, 5),
    Point(5, 3),
    Point(5, 1),
    Point(3, 0),
  ]);

  final point1 = Point(5, 2);
  var isInside = polygon.contains(point1);
  print(isInside); // true

  final point2 = Point(9, 2);
  isInside = polygon.contains(point2);
  print(isInside); //false

  // Line
  final line1 = Line(Point(0, 2), Point(2, 0));
  final line2 = Line(Point(0, -1), Point(3, 2));

  final intersect = line1.intersect(line2);

  print(intersect); //Point(1.5, 0.5)
}
4
likes
140
pub points
69%
popularity

Publisher

verified publishersamderlust.com

A set of utils that help with geometry (line, circle, triangle, polygon,...)

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on geometry_kit