Vars
GEOMETRY_EPS = 1e-10
- Source Edit
Procs
proc geometry_eq(x, y: SomeFloat): bool
- Source Edit
proc geometry_eq(x: int; y: SomeFloat): bool
- Source Edit
proc geometry_eq(x: SomeFloat; y: int): bool
- Source Edit
proc geometry_eq[T, S](x: T; y: S): bool
- Source Edit
proc geometry_ge(x: int; y: SomeFloat): bool
- Source Edit
proc geometry_ge(x: SomeFloat; y: int): bool
- Source Edit
proc geometry_ge[T, S](x: T; y: S): bool
- Source Edit
proc geometry_gt[T, S](x: T; y: S): bool
- Source Edit
proc geometry_le(x: int; y: SomeFloat): bool
- Source Edit
proc geometry_le(x: SomeFloat; y: int): bool
- Source Edit
proc geometry_le[T, S](x: T; y: S): bool
- Source Edit
proc geometry_lt[T, S](x: T; y: S): bool
- Source Edit
proc geometry_neq[T, S](x: T; y: S): bool
- Source Edit
proc initSegment[T](s, t: Point[T]): Segment[T]
- 2点 (s, t) を結ぶ線分の初期化 Source Edit