-
-
Notifications
You must be signed in to change notification settings - Fork 82
dtl::XX::YY::create (形状描画)
Kasugaccho edited this page Aug 13, 2019
·
3 revisions
// (1) STL
template<typename Matrix_>
auto create(Matrix_&& matrix_) const noexcept;
// (2) LayerSTL
template<typename Matrix_>
auto create(Matrix_&& matrix_, const std::size_t layer_) const noexcept;
// (3) Normal
template<typename Matrix_>
auto create(Matrix_&& matrix_, const std::size_t max_x_, const std::size_t max_y_) const noexcept;
// (4) LayerNormal
template<typename Matrix_>
auto create(Matrix_&& matrix_, const std::size_t layer_, const std::size_t max_x_, const std::size_t max_y_) const noexcept;
Matrixに描画する。
戻り値の型は全てにおいて 引数として渡されたMatrixの型(Matrix_
型) である。
投げない
基本的にはO(n^2)である。 ※一部、例外がある。
#include <DTL.hpp>
#include <cstddef>
#include <cstdint>
#include <array>
int main() {
using shape_t = std::uint_fast8_t;
constexpr std::size_t width{ 16 };
constexpr std::size_t height{ 8 };
std::array<std::array<shape_t, width>, height> matrix{ {} };
auto&& catch_matrix{ dtl::shape::Border<shape_t>(1).create(matrix) };
dtl::console::OutputString<shape_t>("//", "##").create(catch_matrix);
return 0;
}
################################
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
################################
#include <DTL.hpp>
#include <cstddef>
#include <cstdint>
#include <array>
int main() {
using shape_t = std::uint_fast8_t;
constexpr std::size_t width{ 16 };
constexpr std::size_t height{ 8 };
constexpr std::size_t layer_max{ 2 };
constexpr std::size_t create_layer{ 1 };
std::array<std::array<std::array<shape_t, layer_max>, width>, height> matrix{ {} };
auto&& catch_matrix{ dtl::shape::Border<shape_t>(1).create(matrix, create_layer) };
dtl::console::OutputString<shape_t>("//", "##").create(catch_matrix, create_layer);
return 0;
}
################################
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
################################
#include <DTL.hpp>
#include <cstddef>
#include <cstdint>
int main() {
using shape_t = std::uint_fast8_t;
constexpr std::size_t width{ 16 };
constexpr std::size_t height{ 8 };
shape_t matrix[height][width]{};
auto&& catch_matrix{ dtl::shape::Border<shape_t>(1).create(matrix, width, height) };
dtl::console::OutputString<shape_t>("//", "##").create(catch_matrix, width, height);
return 0;
}
################################
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
################################
#include <DTL.hpp>
#include <cstddef>
#include <cstdint>
int main() {
using shape_t = std::uint_fast8_t;
constexpr std::size_t width{ 16 };
constexpr std::size_t height{ 8 };
constexpr std::size_t layer_max{ 2 };
constexpr std::size_t create_layer{ 1 };
shape_t matrix[height][width][layer_max]{};
auto&& catch_matrix{ dtl::shape::Border<shape_t>(1).create(matrix, create_layer, width, height) };
dtl::console::OutputString<shape_t>("//", "##").create(catch_matrix, create_layer, width, height);
return 0;
}
################################
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
##////////////////////////////##
################################
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)