blob: 2daf7dab6be43a1a8af544f71c184a1057bf9744 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
syntax = "proto3";
import "JobFileLiquidVolume.proto";
package Tango.PMR.Exports;
option java_package = "com.twine.tango.pmr.exports";
message JobFileBrushStop
{
string ColorSpaceGuid = 1;
double OffsetPercent = 2;
double Cyan = 3;
double Magenta = 4;
double Yellow = 5;
double Black = 6;
int32 Red = 7;
int32 Green = 8;
int32 Blue = 9;
double L = 10;
double A = 11;
double B = 12;
repeated JobFileLiquidVolume LiquidVolumes = 24;
bool Corrected = 21;
string ColorCatalogGuid = 22;
string ColorCatalogItemGuid = 23;
bool IsTransparent = 25;
int32 StopIndex = 26;
int32 BestMatchR = 27;
int32 BestMatchG = 28;
int32 BestMatchB = 29;
}
|