isVectorVisible method
Checks if vector is visible in the current viewport.
Implementation
@override
bool isVectorVisible(Vector3 vector) {
return vector.x >= -_viewPortWidth &&
vector.x <= _viewPortWidth &&
vector.y >= -_viewPortHeight &&
vector.y <= _viewPortHeight &&
vector.z <= _maxDepth;
}