public void SetValue(Point4D point, T value) { SetValue(point.X, point.Y, point.Z, point.W, value); }
public T GetValue(Point4D point) { return(GetValue(point.X, point.Y, point.Z, point.W)); }