RenderPolygonPointopen in new window
RenderPolygonPoint
は描画する多角形の頂点座標を表す型です。
この型は [x: umber, y: number]
のようなタプル型で表します。
サンプル
import { RenderPolygonPoint } from 'qratch'
const point: RenderPolygonPoint = [100, 200] // x=100, y=200
1
2
3
2
3
RenderPolygonPoint
は描画する多角形の頂点座標を表す型です。
この型は [x: umber, y: number]
のようなタプル型で表します。
import { RenderPolygonPoint } from 'qratch'
const point: RenderPolygonPoint = [100, 200] // x=100, y=200