12 lines
178 B
Markdown
12 lines
178 B
Markdown
|
---
|
||
|
title: "Point"
|
||
|
date: 2019-12-01T22:41:00-08:00
|
||
|
weight: 6
|
||
|
---
|
||
|
|
||
|
To define a Point, pass either a **Position2D** struct or two integers.
|
||
|
|
||
|
```cs
|
||
|
var point = new Point(1, 2);
|
||
|
```
|