3dtoys/resources/flower.h

20 lines
430 B
C
Raw Permalink Normal View History

2024-08-13 01:21:18 +00:00
#ifndef H3D_FLOWER
// F = flower color
// S = stem color
// D = disk color (usually yellow)
// B = bottom flower color (darker than F)
// Y = bottom stem color (darker than S)
// clang-format off
#define H3D_FLOWER(f, s, d, b, y) { \
0,0,f,0,0,f,0,0, \
0,0,f,d,d,f,0,0, \
0,0,f,f,f,b,0,0, \
0,0,s,b,b,y,0,0, \
0,0,0,s,y,0,0,0, \
0,s,s,s,y,y,y,0, \
0,0,0,s,y,0,0,0, \
0,0,0,s,y,0,0,0, \
}
// clang-format on
#endif