Path

Path data type in Postgres represented by lists of connected points. Paths can be open, where the first and last points in the list are considered not connected, or closed, where the first and last points are considered connected.

Constructors

this
this()
Undocumented in source.
this
this(bool isOpen, List!(Point) points)
Undocumented in source.

Members

Functions

getPoints
List!(Point) getPoints()
Undocumented in source. Be warned that the author may not have intended to support it.
isOpen
bool isOpen()
Undocumented in source. Be warned that the author may not have intended to support it.
opEquals
bool opEquals(Object o)
Undocumented in source. Be warned that the author may not have intended to support it.
setOpen
void setOpen(bool open)
Undocumented in source. Be warned that the author may not have intended to support it.
setPoints
void setPoints(List!(Point) points)
Undocumented in source. Be warned that the author may not have intended to support it.
toHash
size_t toHash()
Undocumented in source. Be warned that the author may not have intended to support it.
toString
string toString()
Undocumented in source. Be warned that the author may not have intended to support it.

Meta