def point(): o = PointI() populate_shape(o) o.cx = rdouble(1.0) o.cy = rdouble(2.0) o.id = rlong(3L) return o
def point(): o = PointI() populate_shape(o) if SCHEMA_VERSION == "2015-01": o.cx = rdouble(1.0) o.cy = rdouble(2.0) else: o.x = rdouble(1.0) o.y = rdouble(2.0) o.id = rlong(3L) return o
def point(): o = PointI() populate_shape(o) if SCHEMA_VERSION == '2015-01': o.cx = rdouble(1.0) o.cy = rdouble(2.0) else: o.x = rdouble(1.0) o.y = rdouble(2.0) o.id = rlong(3L) return o
def point(identity_transform): o = PointI() populate_shape(o, identity_transform) if SCHEMA_VERSION == '2015-01': o.cx = rdouble(1.0) o.cy = rdouble(2.0) else: o.x = rdouble(1.0) o.y = rdouble(2.0) o.id = rlong(3) return o