Skip to content

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

Kasugaccho edited this page Aug 13, 2019 · 2 revisions

Select Language 🌐

English 🇬🇧 / 日本語 🇯🇵


constexpr auto clearValue() noexcept;

概要

描画値を消去する。

戻り値

戻り値の型は 当クラスの参照値 である。

例外

投げない

計算量

定数時間

#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;

	border.setValue(2);
	border.clearValue().drawArray(matrix, width, height);

	std::cout << "Value:" << static_cast<int>(border.getValue()) << '\n';

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

	return 0;
}

出力

Value: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,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,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
////////////////////////////////
////////////////////////////////
////////////////////////////////
////////////////////////////////
////////////////////////////////
////////////////////////////////
////////////////////////////////
////////////////////////////////
Clone this wiki locally