Exemple #1
0
 public Request(int jobId, FJobRequestType requestType, TransformType?transformType, int amount)
 {
     JobId         = jobId;
     RequestType   = requestType;
     TransformType = transformType;
     Amount        = amount;
 }
Exemple #2
0
 public FJobRequest(int jobId, string name, FJobRequestType requestType, Coords coords, RectangleInt area, SizeInt samplePoints, uint maxIterations, TransformType?transformType = null)
 {
     JobId         = jobId;
     Name          = name;
     Coords        = coords;
     Area          = area;
     SamplePoints  = samplePoints;
     MaxIterations = maxIterations;
     RequestType   = requestType;
     TransformType = transformType;
 }