Class BrightestStarsSimple
- java.lang.Object
-
- gaia.cu9.ari.gaiaorbit.data.octreegen.generator.BrightestStarsSimple
-
- All Implemented Interfaces:
IAggregationAlgorithm
public class BrightestStarsSimple extends java.lang.Object implements IAggregationAlgorithm
-
-
Constructor Summary
Constructors Constructor Description BrightestStarsSimple(int maxPart)
Constructor using fields
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getDiscarded()
Returns the number of discarded stars by this algorithm so far.int
getMaxDepth()
Returns the max depth setting.int
getMaxPart()
Gets the maximum number of particles in a single nodeboolean
sample(com.badlogic.gdx.utils.Array<StarGroup.StarBean> inputStars, OctreeNode octant, float percentage)
Creates the sub-sample from the given input stars.
-
-
-
Method Detail
-
sample
public boolean sample(com.badlogic.gdx.utils.Array<StarGroup.StarBean> inputStars, OctreeNode octant, float percentage)
Description copied from interface:IAggregationAlgorithm
Creates the sub-sample from the given input stars. All these stars should be in the box defined by the center and the sizes.- Specified by:
sample
in interfaceIAggregationAlgorithm
- Parameters:
inputStars
- The actual stars that are inside the octant.octant
- The octant that characterizes the box with its center, size and depth well set.percentage
- The percentage of objects to be included in the octant.- Returns:
- True if we are in a leaf.
-
getMaxPart
public int getMaxPart()
Description copied from interface:IAggregationAlgorithm
Gets the maximum number of particles in a single node- Specified by:
getMaxPart
in interfaceIAggregationAlgorithm
- Returns:
- maximum number of particles in a node
-
getDiscarded
public int getDiscarded()
Description copied from interface:IAggregationAlgorithm
Returns the number of discarded stars by this algorithm so far.- Specified by:
getDiscarded
in interfaceIAggregationAlgorithm
- Returns:
- The number of stars discarded.
-
getMaxDepth
public int getMaxDepth()
Description copied from interface:IAggregationAlgorithm
Returns the max depth setting.- Specified by:
getMaxDepth
in interfaceIAggregationAlgorithm
- Returns:
- The max depth
-
-