Skip to content

dtl::XX::YY::setPoint (形状描画)

Kasugaccho edited this page Jun 3, 2019 · 3 revisions
// (1)
constexpr auto setPoint(const std::size_t point_) noexcept;

// (2)
constexpr auto setPoint(const std::size_t point_x_, const std::size_t point_y_) noexcept;

概要

描画始点座標(X,Y)を設定する。

戻り値

戻り値の型は全てにおいて 当クラスの参照値 である。

例外

投げない

計算量

定数時間

#include <DTL.hpp>
#include <iostream>
#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]{};

	dtl::shape::Border<shape_t> border(1);

	border.setPoint(5, 3).drawArray(matrix, width, height);

	std::cout << "PointX:" << border.getPointX() << '\n';
	std::cout << "PointY:" << border.getPointY() << '\n';

	dtl::console::OutputNumber<shape_t>(",").drawArray(matrix, width, height);
	dtl::console::OutputString<shape_t>("//", "##").drawArray(matrix, width, height);

	return 0;
}

出力

PointX:5
PointY:3
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,1,1,1,1,1,1,1,1,1,1,1,
0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,
0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,
0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,
0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,
////////////////////////////////
////////////////////////////////
////////////////////////////////
//////////######################
//////////##//////////////////##
//////////##//////////////////##
//////////##//////////////////##
//////////######################
Clone this wiki locally