Esempio n. 1
0
// 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)}
}
Esempio n. 2
0
// 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}
}