公開日: 04/01/2021

塗りつぶしのパターンを追加する

Fill Pattern()は、塗りつぶし領域のパターンを設定します。

行列の例

マスク(0~1の値の行列)またはイメージを指定します。行列内の値は、それぞれピクセルを作成します。

win = New Window( "例",
	Graph Box(
		Fill Pattern(
			[1 0.5 0 0, 0.5 0 0 1, 0 0 1 0.5, 0 1 0.5 0]
		);
		Polygon( [10 30 90], [88 22 44] );
	)
);

名前付きパターンの例

表12.3にあるパターンの名前を引用符で囲んで指定します。

win = New Window( "名前付きパターンの例",
	Graph Box(
		Fill Pattern( "vertical light" );
		Polygon( [10 30 90], [88 22 44] );
	)
);

グラフィックの例

イメージを引用符で囲んで指定します。表示しようとしているコンピュータにイメージがインストールされていない場合は、形状の中に疑問符が表示されます。

win = New Window( "グラフィックの例",
	Graph Box(
		Fill Pattern( Open( "$SAMPLE_IMAGES/pi.gif", "gif" ) );
		Polygon( [10 30 90], [88 22 44] );
	)
);

表12.3 塗りつぶしのパターン

パターン名

パターン

left slant light (左斜め・細)

Image shown here

right slant light (右斜め・細)

Image shown here

vertical light (縦・細)

Image shown here

horizontal light (横・細)

Image shown here

grid light (格子・細)

Image shown here

hatch light (斜め格子・細)

Image shown here

h wave light (横波・細)

Image shown here

v wave light (縦波・細)

Image shown here

hollow circle (中抜き円)

Image shown here

left slant medium (左斜め・中)

Image shown here

right slant medium (右斜め・中)

Image shown here

vertical medium (縦・中)

Image shown here

horizontal medium (横・中)

Image shown here

grid medium (格子・中)

Image shown here

hatch medium (斜め格子・中)

Image shown here

h wave medium (横波・中)

Image shown here

v wave medium (縦波・中)

Image shown here

filled circle (塗りつぶし円)

Image shown here

left slant heavy (左斜め・太)

Image shown here

right slant heavy (右斜め・太)

Image shown here

vertical heavy (縦・太)

Image shown here

horizontal heavy (横・太)

Image shown here

grid heavy (格子・太)

Image shown here

hatch heavy (斜め格子・太)

Image shown here

h wave heavy (横波・太)

Image shown here

v wave heavy (縦波・太)

Image shown here

diamond (ひし形)

Image shown here

left slant heavy b (左斜め・太B)

Image shown here

right slant heavy b (右斜め・太B)

Image shown here

random (ランダム)

Image shown here

square (正方形)

Image shown here

square offset (正方形交互)

Image shown here

wide (横長方形)

Image shown here

tall (縦長方形)

Image shown here

checkerboard (市松模様)

Image shown here

grid dots (グリッドドット)

Image shown here

triangle up (上向き三角形)

Image shown here

triangle down (下向き三角形)

Image shown here

triangle left (左向き三角形)

Image shown here

triangle right (右向き三角形)

Image shown here

weave light (平織り・細)

Image shown here

weave heavy (平織り・太)

Image shown here

honeycomb (ハニカム)

Image shown here

より詳細な情報が必要な場合や、質問があるときは、JMPユーザーコミュニティで答えを見つけましょう (community.jmp.com).