mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-20 00:51:41 +00:00
15 lines
247 B
Java
15 lines
247 B
Java
package com.chameleonvision.vision.enums;
|
|
|
|
public enum ImageFlipMode {
|
|
NONE(Integer.MIN_VALUE),
|
|
VERTICAL(1),
|
|
HORIZONTAL(0),
|
|
BOTH(-1);
|
|
|
|
public final int value;
|
|
|
|
ImageFlipMode(int value) {
|
|
this.value = value;
|
|
}
|
|
}
|