CubeCut.cs 290 B

1234567891011121314
  1. namespace TEAMModelOS.SDK.PngQuant
  2. {
  3. internal struct CubeCut
  4. {
  5. public readonly byte? Position;
  6. public readonly float Value;
  7. public CubeCut(byte? cutPoint, float result)
  8. {
  9. Position = cutPoint;
  10. Value = result;
  11. }
  12. }
  13. }