write_coord
return write_coord(buffer, t.x) && write_coord(buffer, t.y);
if (!write_coord(buffer, point.x) || !write_coord(buffer, point.y))
if (!write_coord(buffer, point.x)
|| !write_coord(buffer, point.y))
if (!write_coord(buffer, pointIn.x)
|| !write_coord(buffer, pointIn.y))
if (!write_coord(buffer, pointOut.x)
|| !write_coord(buffer, pointOut.y))
bool write_coord(LittleEndianBuffer& buffer, float coord);
&& write_coord(fPointBuffer, x);
&& write_coord(fPointBuffer, y);
&& write_coord(fPointBuffer, point.x)
&& write_coord(fPointBuffer, point.y);
&& write_coord(fPointBuffer, point.x)
&& write_coord(fPointBuffer, point.y)
&& write_coord(fPointBuffer, pointIn.x)
&& write_coord(fPointBuffer, pointIn.y)
&& write_coord(fPointBuffer, pointOut.x)
&& write_coord(fPointBuffer, pointOut.y);