# coding:utf-8
import open3d as o3d
import numpy as np
from numpy.linalg import norm
from numpy.linalg import svd
def planeFit(points):
"""
p, n = planeFit(points)
Given an array, points, of shape (d,...)
representing points in d-dimensional space,
fit an d-dimensional plane to the points.
Return a point, p, on the plane (