github.com/jackc/pgtype.Vec2.Y (field)

19 uses

	github.com/jackc/pgtype (current package)
		box.go#L120: 		strconv.FormatFloat(src.P[0].Y, 'f', -1, 64),
		box.go#L122: 		strconv.FormatFloat(src.P[1].Y, 'f', -1, 64),
		box.go#L136: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P[0].Y))
		box.go#L138: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P[1].Y))
		circle.go#L107: 		strconv.FormatFloat(src.P.Y, 'f', -1, 64),
		circle.go#L123: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P.Y))
		lseg.go#L120: 		strconv.FormatFloat(src.P[0].Y, 'f', -1, 64),
		lseg.go#L122: 		strconv.FormatFloat(src.P[1].Y, 'f', -1, 64),
		lseg.go#L137: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P[0].Y))
		lseg.go#L139: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P[1].Y))
		path.go#L142: 			strconv.FormatFloat(p.Y, 'f', -1, 64),
		path.go#L167: 		buf = pgio.AppendUint64(buf, math.Float64bits(p.Y))
		point.go#L17: 	Y float64
		point.go#L150: 		strconv.FormatFloat(src.P.Y, 'f', -1, 64),
		point.go#L163: 	buf = pgio.AppendUint64(buf, math.Float64bits(src.P.Y))
		point.go#L196: 		buff.WriteString(fmt.Sprintf("(%g,%g)", src.P.X, src.P.Y))
		polygon.go#L68: 		p.P = append(p.P, Vec2{X: src[i], Y: src[i+1]})
		polygon.go#L179: 			strconv.FormatFloat(p.Y, 'f', -1, 64),
		polygon.go#L198: 		buf = pgio.AppendUint64(buf, math.Float64bits(p.Y))