-
Notifications
You must be signed in to change notification settings - Fork 10
DTL.Range.BasicRect.GetPointY
sitRyo edited this page Jan 15, 2020
·
2 revisions
// (1)
uint GetPointY()
// (2)
BasicRect GetPointY(ref uint value)
描画始点座標Yを取得する。
(1) 戻り値の型はuint
である。
(2) 戻り値はBasicRectの参照値である。
投げない
Border border = new Border(5);
var matrix = new int[10, 10];
border.SetPointX(3).SetPointY(4);
Debug.Log(border.GetPointX());
Debug.Log(border.GetPointY());
border.Draw(matrix);
new OutputConsole().Draw(matrix);
3
4
0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
0 0 0 5 5 5 5 5 5 5
0 0 0 5 0 0 0 0 0 5
0 0 0 5 0 0 0 0 0 5
0 0 0 5 0 0 0 0 0 5
0 0 0 5 0 0 0 0 0 5
0 0 0 5 5 5 5 5 5 5
Copyright (c) 2017-2019 Kasugaccho. Copyright (c) 2018-2019 As Project.
Distributed under the Boost Software License, Version 1.0.(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)