App
DifferenceOfGaussianSharpenFilterCancelableToolActionData.java
Go to the documentation of this file.
1 package mhr.appcore.tools.actiondata;
2 
3 import mhr.appcore.tools.actiondata.CancelableToolActionData.Action;
4 
9 
10 
11  public double sigma;
12  public double k;
13  public double force;
14  public boolean area;
15 
23  super(action);
24  this.sigma = sigma;
25  this.k = k;
26  this.force = force;
27  this.area = area;
28 
29  }
30 
31 }