![JAR search and dependency download from the Maven repository](/logo.png)
eu.mihosoft.vrl.v3d.UnityModifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcsg Show documentation
Show all versions of jcsg Show documentation
Java implementation of BSP based CSG (Constructive Solid Geometry)
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package eu.mihosoft.vrl.v3d;
/**
* Modifies along x axis.
*
* @author Michael Hoffer <[email protected]>
*/
public class UnityModifier implements WeightFunction {
/**
* Constructor.
*/
public UnityModifier() {
}
@Override
public double eval(Vector3d pos, CSG csg) {
return 1.0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy