Fixed class name
This commit is contained in:
parent
82fa9b1047
commit
640671bfce
8 changed files with 26 additions and 26 deletions
|
@ -3,22 +3,22 @@ package ru.betterend.util.sdf.primitive;
|
|||
import net.minecraft.util.math.MathHelper;
|
||||
import ru.betterend.util.MHelper;
|
||||
|
||||
public class SDFCapedCone extends SDFPrimitive {
|
||||
public class SDFCappedCone extends SDFPrimitive {
|
||||
private float radius1;
|
||||
private float radius2;
|
||||
private float height;
|
||||
|
||||
public SDFCapedCone setRadius1(float radius) {
|
||||
public SDFCappedCone setRadius1(float radius) {
|
||||
this.radius1 = radius;
|
||||
return this;
|
||||
}
|
||||
|
||||
public SDFCapedCone setRadius2(float radius) {
|
||||
public SDFCappedCone setRadius2(float radius) {
|
||||
this.radius2 = radius;
|
||||
return this;
|
||||
}
|
||||
|
||||
public SDFCapedCone setHeight(float height) {
|
||||
public SDFCappedCone setHeight(float height) {
|
||||
this.height = height;
|
||||
return this;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue