public enum Aero extends java.lang.Enum<Aero>
SoftBodyConfig.aerodynamics()| Enum Constant and Description |
|---|
F_OneSided
Face normals are taken as they are.
|
F_TwoSided
Face normals are flipped to match velocity.
|
F_TwoSidedLiftDrag
Face normals are flipped to match velocity.
|
V_OneSided
Vertex normals are taken as they are.
|
V_Point
Vertex normals are oriented toward velocity.
|
V_TwoSided
Vertex normals are flipped to match velocity.
|
V_TwoSidedLiftDrag
Vertex normals are flipped to match velocity.
|
| Modifier and Type | Method and Description |
|---|---|
static Aero |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Aero[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Aero V_Point
public static final Aero V_TwoSided
public static final Aero V_TwoSidedLiftDrag
public static final Aero V_OneSided
public static final Aero F_TwoSided
public static final Aero F_TwoSidedLiftDrag
public static final Aero F_OneSided
public static Aero[] values()
for (Aero c : Aero.values()) System.out.println(c);
public static Aero valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null