[C#/WINFORM/SCOTTPLOT] Colormap 클래스 : GetColor 메소드를 사용해 색상맵 색상 구하기
■ Colormap 클래스의 GetColor 메소드를 사용해 색상맵 색상을 구하는 방법을 보여준다. ▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 |
using System.Drawing; using ScottPlot.Drawing; Colormap colormap = Colormap.Viridis; Color color = colormap.GetColor(0.5, alpha : 0.8); |