マテリアル

マテリアルは材質を指定するためのアイテムです. マテリアルのクラスはGRMaterialです. 通常,マテリアルは次節で説明するメッシュの子描画アイテムとなります. ファイルからメッシュをロードする場合は,メッシュの作成と同時にマテリアルも自動的に作成され,メッシュの子として追加されます. GRMaterialのディスクリプタは以下の通りです.

GRMaterialDesc

Vec4f

ambient

環境色

Vec4f

diffuse

拡散色

Vec4f

specular

鏡面色

Vec4f

emissive

自己発光

float

power

鏡面係数

UTString

texname

テクスチャファイル名

レンダラにマテリアルを設定すると,次に別のマテリアルを設定するまでの間の 形状描画にそのマテリアルの描画属性が適用されます. マテリアルを設定するにはいくつかの方法があります. 一つ目はGRMaterialIfRender関数を呼ぶ方法です: これに加え,以下に示すGRRenderの関数のいずれかを用いることもできます.

GRRenderIf

void

SetMaterial(const GRMaterialDesc&)

描画マテリアルの設定

void

SetMaterial(const GRMaterialIf*)

描画マテリアルの設定

void

SetMaterial(int)

描画マテリアルの設定

以下の例はマテリアルを設定する3通りの方法を示しています. どの方法を用いても結果は変わりません.

    // given GRRenderIf* render, GRSceneIf* scene
    GRMaterialDesc md;
    md.diffuse = Vec4f(1.0f, 0.0f, 0.0f, 1.0f);
    // 1.
    render->SetMaterial(md);
    // 2.
    GRMaterialIf* mat = scene->CreateVisual(md)->Cast();
    mat->Render(render);
    // 3.
    render->SetMaterial(mat);

毎回マテリアルを作成するのは煩わしいことがあります. そのような場合はレンダラの予約色を指定することも可能です.

    // 4.
    render->SetMaterial(GRRenderBaseIf::RED);

使用可能な予約色はX11 web colorにもとづいています. 詳しくはSprGRRender.hヘッダファイルを

Table  : Reserved colors

INDIANRED

$\blacksquare $

(205 92 92)

LIGHTCORAL

$\blacksquare $

(240 128 128)

SALMON

$\blacksquare $

(250 128 114)

DARKSALMON

$\blacksquare $

(233 150 122)

LIGHTSALMON

$\blacksquare $

(255 160 122)

RED

$\blacksquare $

(255 0 0)

CRIMSON

$\blacksquare $

(220 20 60)

FIREBRICK

$\blacksquare $

(178 34 34)

DARKRED

$\blacksquare $

(139 0 0)

PINK

$\blacksquare $

(255 192 203)

LIGHTPINK

$\blacksquare $

(255 182 193)

HOTPINK

$\blacksquare $

(255 105 180)

DEEPPINK

$\blacksquare $

(255 20 147)

MEDIUMVIOLETRED

$\blacksquare $

(255 21 133)

PALEVIOLETRED

$\blacksquare $

(255 112 147)

CORAL

$\blacksquare $

(255 127 80)

TOMATO

$\blacksquare $

(255 99 71)

ORANGERED

$\blacksquare $

(255 69 0)

DARKORANGE

$\blacksquare $

(255 140 0)

ORANGE

$\blacksquare $

(255 165 0)

GOLD

$\blacksquare $

(255 215 0)

YELLOW

$\blacksquare $

(255 255 0)

LIGHTYELLOW

$\blacksquare $

(255 255 224)

LEMONCHIFFON

$\blacksquare $

(255 250 205)

LIGHTGOLDENRODYELLOW

$\blacksquare $

(250 250 210)

PAPAYAWHIP

$\blacksquare $

(255 239 213)

MOCCASIN

$\blacksquare $

(255 228 181)

PEACHPUFF

$\blacksquare $

(255 218 185)

PALEGOLDENROD

$\blacksquare $

(238 232 170)

KHAKI

$\blacksquare $

(240 230 140)

DARKKHAKI

$\blacksquare $

(189 183 107)

LAVENDAR

$\blacksquare $

(230 230 250)

THISTLE

$\blacksquare $

(216 191 216)

PLUM

$\blacksquare $

(221 160 221)

VIOLET

$\blacksquare $

(238 130 238)

ORCHILD

$\blacksquare $

(218 112 214)

FUCHSIA

$\blacksquare $

(255 0 255)

MAGENTA

$\blacksquare $

(255 0 255)

MEDIUMORCHILD

$\blacksquare $

(186 85 211)

MEDIUMPURPLE

$\blacksquare $

(147 112 219)

BLUEVIOLET

$\blacksquare $

(138 43 226)

DARKVIOLET

$\blacksquare $

(148 0 211)

DARKORCHILD

$\blacksquare $

(153 50 204)

DARKMAGENTA

$\blacksquare $

(139 0 139)

PURPLE

$\blacksquare $

(128 0 128)

INDIGO

$\blacksquare $

(75 0 130)

DARKSLATEBLUE

$\blacksquare $

(72 61 139)

SLATEBLUE

$\blacksquare $

(106 90 205)

MEDIUMSLATEBLUE

$\blacksquare $

(123 104 238)

GREENYELLOW

$\blacksquare $

(173 255 47)

CHARTREUSE

$\blacksquare $

(127 255 0)

LAWNGREEN

$\blacksquare $

(124 252 0)

LIME

$\blacksquare $

(0 255 0)

LIMEGREEN

$\blacksquare $

(50 205 50)

PALEGREEN

$\blacksquare $

(152 251 152)

LIGHTGREEN

$\blacksquare $

(144 238 144)

MEDIUMSPRINGGREEN

$\blacksquare $

(0 250 154)

SPRINGGREEN

$\blacksquare $

(0 255 127)

MEDIUMSEAGREEN

$\blacksquare $

(60 179 113)

SEAGREEN

$\blacksquare $

(46 139 87)

FORESTGREEN

$\blacksquare $

(34 139 34)

GREEN

$\blacksquare $

(0 128 0)

DARKGREEN

$\blacksquare $

(0 100 0)

YELLOWGREEN

$\blacksquare $

(154 205 50)

OLIVEDRAB

$\blacksquare $

(107 142 35)

OLIVE

$\blacksquare $

(128 128 0)

DARKOLIVEGREEN

$\blacksquare $

(85 107 47)

MEDIUMAQUAMARINE

$\blacksquare $

(102 205 170)

DARKSEAGREEN

$\blacksquare $

(143 188 143)

LIGHTSEAGREEN

$\blacksquare $

(32 178 170)

DARKCYAN

$\blacksquare $

(0 139 139)

TEAL

$\blacksquare $

(0 128 128)

AQUA

$\blacksquare $

(0 255 255)

CYAN

$\blacksquare $

(0 255 255)

LIGHTCYAN

$\blacksquare $

(224 255 255)

PALETURQUOISE

$\blacksquare $

(175 238 238)

AQUAMARINE

$\blacksquare $

(127 255 212)

TURQUOISE

$\blacksquare $

(64 224 208)

MEDIUMTURQUOISE

$\blacksquare $

(72 209 204)

DARKTURQUOISE

$\blacksquare $

(0 206 209)

CADETBLUE

$\blacksquare $

(95 158 160)

STEELBLUE

$\blacksquare $

(70 130 180)

LIGHTSTEELBLUE

$\blacksquare $

(176 196 222)

POWDERBLUE

$\blacksquare $

(176 224 230)

LIGHTBLUE

$\blacksquare $

(173 216 230)

SKYBLUE

$\blacksquare $

(135 206 235)

LIGHTSKYBLUE

$\blacksquare $

(135 206 250)

DEEPSKYBLUE

$\blacksquare $

(0 191 255)

DODGERBLUE

$\blacksquare $

(30 144 237)

CORNFLOWERBLUE

$\blacksquare $

(65 105 225)

ROYALBLUE

$\blacksquare $

(65 105 225)

BLUE

$\blacksquare $

(0 0 255)

MEDIUMBLUE

$\blacksquare $

(0 0 205)

DARKBLUE

$\blacksquare $

(0 0 139)

NAVY

$\blacksquare $

(0 0 128)

MIDNIGHTBLUE

$\blacksquare $

(25 25 112)

CORNSILK

$\blacksquare $

(255 248 220)

BLANCHEDALMOND

$\blacksquare $

(255 235 205)

BISQUE

$\blacksquare $

(255 228 196)

NAVAJOWHITE

$\blacksquare $

(255 222 173)

WHEAT

$\blacksquare $

(245 222 179)

BURLYWOOD

$\blacksquare $

(222 184 135)

TAN

$\blacksquare $

(210 180 140)

ROSYBROWN

$\blacksquare $

(188 143 143)

SANDYBROWN

$\blacksquare $

(244 164 96)

GOLDENROD

$\blacksquare $

(218 165 32)

DARKGOLDENROD

$\blacksquare $

(184 134 11)

PERU

$\blacksquare $

(205 133 63)

CHOCOLATE

$\blacksquare $

(210 105 30)

SADDLEBROWN

$\blacksquare $

(139 69 19)

SIENNA

$\blacksquare $

(160 82 45)

BROWN

$\blacksquare $

(154 42 42)

MAROON

$\blacksquare $

(128 0 0)

WHITE

$\blacksquare $

(255 255 255)

SNOW

$\blacksquare $

(255 250 250)

HONEYDEW

$\blacksquare $

(240 255 240)

MINTCREAM

$\blacksquare $

(245 255 250)

AZURE

$\blacksquare $

(240 255 255)

ALICEBLUE

$\blacksquare $

(240 248 255)

GHOSTWHITE

$\blacksquare $

(248 248 255)

WHITESMOKE

$\blacksquare $

(245 245 245)

SEASHELL

$\blacksquare $

(255 245 238)

BEIGE

$\blacksquare $

(245 245 220)

OLDLACE

$\blacksquare $

(253 245 230)

FLORALWHITE

$\blacksquare $

(255 250 240)

IVORY

$\blacksquare $

(255 255 240)

ANTIQUEWHITE

$\blacksquare $

(250 235 215)

LINEN

$\blacksquare $

(250 240 230)

LAVENDERBLUSH

$\blacksquare $

(255 240 245)

MISTYROSE

$\blacksquare $

(255 228 225)

GAINSBORO

$\blacksquare $

(220 220 220)

LIGHTGRAY

$\blacksquare $

(211 211 211)

SILVER

$\blacksquare $

(192 192 192)

DARKGRAY

$\blacksquare $

(169 169 169)

GRAY

$\blacksquare $

(128 128 128)

DIMGRAY

$\blacksquare $

(105 105 105)

LIGHTSLATEGRAY

$\blacksquare $

(119 136 153)

SLATEGRAY

$\blacksquare $

(112 128 144)

DARKSLATEGRAY

$\blacksquare $

(47 79 79)

BLACK

$\blacksquare $

(0 0 0)

GRRenderBaseIfが持つ予約色(全24色,Table #.#.#参照)です.