Skip to content

dtl::shape::WhiteNoise (形状クラス)

Kasugaccho edited this page Aug 17, 2019 · 11 revisions

バージョン:0.4.5.0以降

<DTL/Shape/WhiteNoise.hpp>

namespace dtl::shape {
  template <typename T>
  class WhiteNoise;
}

T は1bit以上の型

対応機能

機能名 対応
非長方形Matrix 不可 (-v0.4.10) / 可能✅(v0.4.11-)

例 (C++11)

#include <DTL.hpp>
#include <cstdint>
#include <array>

int main() {

	using shape_t = std::uint_fast8_t;
	std::array<std::array<shape_t, 16>, 12> matrix{ {} };

	dtl::shape::WhiteNoise<shape_t>(1).draw(matrix);

	dtl::console::OutputNumber<shape_t>(",").draw(matrix);
	dtl::console::OutputStringBool<shape_t>("//", "##").draw(matrix);

	return 0;
}

出力

0,1,0,0,1,0,0,1,0,0,0,1,1,1,1,1,
1,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,
1,0,0,1,0,1,1,1,1,1,1,0,0,1,0,1,
1,1,0,0,1,1,0,0,0,1,0,0,0,0,1,0,
1,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,
0,0,0,1,0,1,0,0,1,0,1,0,0,0,1,0,
0,1,1,1,1,0,1,1,1,1,0,0,0,1,1,0,
1,0,1,0,1,1,0,1,1,0,0,1,0,0,0,0,
1,1,0,1,0,1,0,0,1,1,1,1,1,1,0,1,
0,0,0,1,1,0,1,0,0,0,1,1,0,0,0,1,
0,0,0,1,1,0,1,0,1,1,0,1,1,1,1,0,
0,0,1,1,1,1,1,0,0,1,1,1,1,1,0,1,
##//####//####//######//////////
////########////####////##//####
//####//##////////////####//##//
////####////######//########//##
////##########////####////####//
######//##//####//##//######//##
##////////##////////######////##
//##//##////##////####//########
////##//##//####////////////##//
######////##//######////######//
######////##//##////##////////##
####//////////####//////////##//

画像

wn

関連項目

dtl::shape::RandomRect

Clone this wiki locally