us.ihmc.simulationconstructionset.ViewportPanelConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simulation-construction-set
Show all versions of simulation-construction-set
Simulation Construction Set
package us.ihmc.simulationconstructionset;
public class ViewportPanelConfiguration
{
public String cameraName;
public int gridx, gridy, gridwidth, gridheight;
public ViewportPanelConfiguration(String cameraName, int gridx, int gridy, int gridwidth, int gridheight)
{
this.cameraName = cameraName;
this.gridx = gridx;
this.gridy = gridy;
this.gridwidth = gridwidth;
this.gridheight = gridheight;
}
}