Qurak

Highlight the intersection of two surfaces

2 ステップを1つのセッション内で順に実行します。各ステップはエンジンで実行済みで、以下の出力は実際に生成されたものです。

ステップ 1
h = x ^ 2 + y ^ 2 + z ^ 2 - 2;
g = x ^ 3 + y ^ 2 - z ^ 2;

出力なし - このステップは次のステップの準備をします。

ステップ 2
ContourPlot3D[{h == 0, g == 0}, {x, -2, 2}, {y, -2, 2}, {z, -2, 2}, MeshFunctions -> {Function[{x, y, z, f}, h - g]}, MeshStyle -> {{Thick, Blue}}, Mesh -> {{0}}, ContourStyle -> Directive[Orange, Opacity[0.5], Specularity[White, 30]]]
出力
-Graphics3D-

使用する関数

関連レシピ

すべてのレシピ · 関数リファレンス · MCPクライアントから使う