-
Notifications
You must be signed in to change notification settings - Fork 10
DTL.Range.BasicRect.GetHeight
sitRyo edited this page Jan 15, 2020
·
2 revisions
// (1)
uint GetHeight()
// (2)
BasicRect GetHeight(ref uint value)
描画立幅Hを取得する
(1) 戻り値の型はuint
である。
(2) 引数にheightを代入して, 戻り値としてBasicRectの参照値を返す。
投げない
Border border = new Border(5);
var matrix = new int[10, 10];
border.SetWidth(5).SetHeight(5);
Debug.Log(border.GetWidth());
Debug.Log(border.GetHeight());
border.Draw(matrix);
new OutputConsole().Draw(matrix);
5
5
5 5 5 5 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 5 5 5 5 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 0 0
0 0 0 0 0 0 0 0 0 0
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)