UdonLibrary
1.0.0
機械システム研究部 C++ ライブラリ
読み取り中…
検索中…
一致する文字列を見つけられません
Color.hpp
[詳解]
1
//
2
// 色空間
3
//
4
// Copyright (c) 2022-2024 udonrobo
5
//
6
7
#pragma once
8
9
#include "
HSV.hpp
"
10
#include "
RGB.hpp
"
11
12
namespace
Udon
13
{
14
#ifdef ARDUINO
15
19
inline
RGB Rainbow(uint32_t cycleMs)
noexcept
20
{
21
const
uint32_t hue = Millis() % cycleMs * 255 / cycleMs;
22
return
HSV{
static_cast<
uint8_t
>
(hue), 255, 255 };
23
}
24
#endif
25
}
// namespace Udon
HSV.hpp
RGB.hpp
Udon
Definition
Bit.hpp:12