// Get the inverse of the combined transform of a circle shape // \param shape Shape object // \return Inverse of the combined transformations applied to the object // const sfTransform* sfCircleShape_getInverseTransform(const sfCircleShape* shape); func (self CircleShape) InverseTransform() Transform { return Transform{C.sfCircleShape_getInverseTransform(self.Cref)} }
// Get the inverse of the combined transform of a circle shape // \param shape Shape object // \return Inverse of the combined transformations applied to the object // const sfTransform* sfCircleShape_getInverseTransform(const sfCircleShape* shape); func (self CircleShape) InverseTransform() Transform { t := C.sfCircleShape_getInverseTransform(self.Cref) return Transform{&t} }