Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
NumPy を使用して楕円体を作成するにはどうすればよいですか?
私は球のためにこのようなものを持っています:
def sphere() R = 25 xx, yy, zz = np.mgrid[:100, :100, :100] return ((xx - 50) ** 2 + (yy - 50) ** 2 + (zz - 50)) < R**2
これを楕円体に一般化したいのですが、理想的には任意の回転を持つことができます。
ここを見てみてください。これが必要なEllipsoidクラスかどうかわかりません。