public bool IsPositionInChunk(Vector3 position)
    {
        Point point = space.GetPointFromPosition(position);

        return(space.IsChunkInRange(point, this, Mathf.Epsilon));
    }