-
-
Notifications
You must be signed in to change notification settings - Fork 82
dtl::XX::YY::draw (形状描画)
Kasugaccho edited this page Apr 12, 2019
·
7 revisions
// (1) STL
template<typename Matrix_>
constexpr bool draw(Matrix_&& matrix_) const noexcept;
// (2) LayerSTL
template<typename Matrix_>
constexpr bool draw(Matrix_&& matrix_, const std::size_t layer_) const noexcept;
// (3) Normal
template<typename Matrix_>
constexpr bool draw(Matrix_&& matrix_, const std::size_t max_x_, const std::size_t max_y_) const noexcept;
// (4) LayerNormal
template<typename Matrix_>
constexpr bool draw(Matrix_&& matrix_, const std::size_t layer_, const std::size_t max_x_, const std::size_t max_y_) const noexcept;
Matrixに描画する。
戻り値の型は全てにおいて bool
である。
戻り値 | 説明 |
---|---|
false | 描画に失敗したことを示す |
true | 描画に成功したことを示す |
投げない
O(n^2)
Copyright (c) 2018-2021 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)