123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Veldrid.Common.Tools
- {
- internal static class ColorHelper
- {
- public static System.Numerics.Vector4 ColorConverToVect4(this Color color)
- {
- return new System.Numerics.Vector4(color.R / 255f, color.G / 255f, color.B / 255f, color.A / 255f);
- }
- public static RgbaFloat ColorConverToRGBA(this Color color)
- {
- return new RgbaFloat(color.R / 255f, color.G / 255f, color.B / 255f, color.A / 255f);
- }
- }
- }
|