Package | Description |
---|---|
org.jamplate.model |
A package that specifies that primary components of a processor that uses the
jamplate-style processing.
|
Modifier and Type | Method and Description |
---|---|
static @NotNull Dominance |
Dominance.compute(int i,
int j,
int s,
int e)
Calculate how much dominant the area [s, e) over the area [i, j).
|
static @NotNull Dominance |
Dominance.compute(@NotNull Reference reference,
int s,
int e)
Calculate how much dominant the area
[s, e) is over the given reference . |
static @NotNull Dominance |
Dominance.compute(@NotNull Reference reference,
@NotNull Reference other)
Calculate how much dominant the
other reference over the given reference . |
static @NotNull Dominance |
Dominance.compute(@NotNull Tree tree,
int s,
int e)
Calculate how much dominant the area
[s, e) is over the given sketch . |
static @NotNull Dominance |
Dominance.compute(@NotNull Tree tree,
@NotNull Reference other)
Calculate how much dominant the
other reference over the given sketch . |
static @NotNull Dominance |
Dominance.compute(@NotNull Tree tree,
@NotNull Tree other)
Calculate how much dominant the
other sketch over the given sketch . |
@NotNull Dominance |
Relation.dominance()
Returns how dominant this direction over the opposite direction.
|
@NotNull Dominance |
Intersection.dominance()
Returns how dominance this intersection over its opposite intersection.
|
abstract @NotNull Dominance |
Dominance.opposite()
Get the opposite dominance type of this dominance type.
|
static Dominance |
Dominance.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Dominance[] |
Dominance.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|