(w binary.Writer)
| 129 | encodeDimension(w, float32(v), 3) |
| 130 | } |
| 131 | func (v valFloatIn) encode(w binary.Writer) { |
| 132 | writeTypedValueHeader(w, typeDimension) |
| 133 | encodeDimension(w, float32(v), 4) |
| 134 | } |
| 135 | func (v valFloatMm) encode(w binary.Writer) { |
| 136 | writeTypedValueHeader(w, typeDimension) |
| 137 | encodeDimension(w, float32(v), 5) |
nothing calls this directly
no test coverage detected