OriginReferencePoint returns a ReferencePoint with the given value for contained and the origin point. It should be used when all points or no points are contained.
(contained bool)
| 134 | // contained and the origin point. It should be used when all points or no |
| 135 | // points are contained. |
| 136 | func OriginReferencePoint(contained bool) ReferencePoint { |
| 137 | return ReferencePoint{Point: OriginPoint(), Contained: contained} |
| 138 | } |
| 139 | |
| 140 | // typeTag is a 32-bit tag that can be used to identify the type of an encoded |
| 141 | // Shape. All encodable types have a non-zero type tag. The tag associated with |
searching dependent graphs…