---
title: "CGPointMakeWithDictionaryRepresentation(_:_:)"
framework: coregraphics
role: symbol
role_heading: Function
path: "coregraphics/cgpointmakewithdictionaryrepresentation(_:_:)"
---

# CGPointMakeWithDictionaryRepresentation(_:_:)

Fills in a point using the contents of the specified dictionary.

## Declaration

```swift
func CGPointMakeWithDictionaryRepresentation(_ dict: CFDictionary, _ point: UnsafeMutablePointer<CGPoint>) -> Bool
```

## Parameters

- `dict`: A dictionary that was previously returned from the function doc://com.apple.coregraphics/documentation/CoreGraphics/CGPointCreateDictionaryRepresentation(_:).
- `point`: On return, the point created from the provided dictionary.

## Return Value

Return Value true if successful; otherwise false.

## See Also

### Creating a Geometric Primitive from a Dictionary Representation

- [CGSizeMakeWithDictionaryRepresentation(_:_:)](coregraphics/cgsizemakewithdictionaryrepresentation(_:_:).md)
- [CGRectMakeWithDictionaryRepresentation(_:_:)](coregraphics/cgrectmakewithdictionaryrepresentation(_:_:).md)
