blob: 7b9a8e6b0894bfa7796cc45ec2ed42ca8ea1bdfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/// A straight line from one point to another.
struct Line {
field start: Shared[Point];
field end: Shared[Point];
}
/// A 2D point.
struct Point {
field x: Int32;
field y: Int32;
}
|