---
title: "CGPointApplyAffineTransform(_:_:)"
framework: coregraphics
role: symbol
role_heading: Function
path: "coregraphics/cgpointapplyaffinetransform(_:_:)"
---

# CGPointApplyAffineTransform(_:_:)

Returns the point resulting from an affine transformation of an existing point.

## Declaration

```swift
func CGPointApplyAffineTransform(_ point: CGPoint, _ t: CGAffineTransform) -> CGPoint
```

## Parameters

- `point`: A point that specifies the x- and y-coordinates to transform.
- `t`: The affine transform to apply.

## Return Value

Return Value A new point resulting from applying the specified affine transform to the existing point.

## See Also

### Applying Affine Transformations

- [CGSizeApplyAffineTransform(_:_:)](coregraphics/cgsizeapplyaffinetransform(_:_:).md)
- [CGRectApplyAffineTransform(_:_:)](coregraphics/cgrectapplyaffinetransform(_:_:).md)
