示例#1
0
bool EmissionMap::drawDirection(const ParticleState& state, Vector3d& direction) const {
	return drawDirection(state.getId(), state.getEnergy(), direction);
}
示例#2
0
bool EmissionMap::checkDirection(const ParticleState& state) const {
	return checkDirection(state.getId(), state.getEnergy(), state.getDirection());
}
示例#3
0
void EmissionMap::fillMap(const ParticleState& state, double weight) {
	fillMap(state.getId(), state.getEnergy(), state.getDirection(), weight);
}