Commit e1be7375 authored by Radek Ošlejšek's avatar Radek Ošlejšek
Browse files

Fix stylecheck errors

parent d5e2e798
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
package cz.fidentis.analyst.engines.face.impl;

import cz.fidentis.analyst.data.face.HumanFace;
import cz.fidentis.analyst.data.mesh.Material;
import cz.fidentis.analyst.data.mesh.MeshIO;
import cz.fidentis.analyst.data.mesh.MeshModel;
import cz.fidentis.analyst.data.ray.Ray;
+1 −1
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ public class CurveRenderingPanel extends JPanel {
    private List<CrossSection2D> secondaryCrossSectionCurves;

    private Vector3d currentCuttingPlaneNormal;
    protected Box faceBoundingBox;
    private Box faceBoundingBox;
    
//    private boolean mirrorCuts = false;
    
+2 −0
Original line number Diff line number Diff line
@@ -160,6 +160,7 @@ public class FpListInfoPanel extends FpListAbstractPanel<FpListInfoPanel.Row> {
                    color = drFeaturePoints.getCustomOffTheMeshColor();
                    toolTipText = TOOL_TIP_TEXT_OFF_THE_MESH;
                }
                default -> throw new UnsupportedOperationException();
            }
        } else {
            switch (fpType) {
@@ -175,6 +176,7 @@ public class FpListInfoPanel extends FpListAbstractPanel<FpListInfoPanel.Row> {
                    color = drFeaturePoints.getOffTheMeshColor();
                    toolTipText = TOOL_TIP_TEXT_OFF_THE_MESH;
                }
                default -> throw new UnsupportedOperationException();
            }
        }

+6 −0
Original line number Diff line number Diff line
@@ -19,6 +19,12 @@ public class ProjectChooserDialog extends JDialog {
    private final List<Project> projects;
    private  Project selectedProject;

    /**
     *
     * @param projectService
     * @param parent
     * @param projects
     */
    public ProjectChooserDialog(ProjectService projectService, Component parent, List<Project> projects) {
        super((Frame) null, "Project Manager", true);
        this.projectService = projectService;
+1 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@ import java.io.Serializable;
 * @param shininess Shininess
 * @param alpha Alpha channel
 * @param illumination Illumination
 * @param textureName Texture name
 * @param texture Texture data
 */
public record Material(
Loading