Created
September 12, 2017 15:09
-
-
Save celestialphineas/72e92c9ab8fd8cad276671da73fe4c4a to your computer and use it in GitHub Desktop.
画一只超载鸡咩~ = ̄ω ̄=
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ζ[x_] := (1 - x/10) Sqrt[1 - Abs[x^3]]; | |
η[x_] := (1 - x/10) Sqrt[1 - Abs[x^2]]; | |
Show[ | |
ParametricPlot3D[{{4/5 ζ[v] Cos[u], 4/5 ζ[v] Sin[u], v}, | |
{24/25 η[v] Cos[u], 1/2 η[-2 v] Sin[u],v - 1/6}}, | |
{u, 0, 2 π}, {v, -1, 1}, | |
PlotRange -> {{-1, 1}, {-1, 1}, {-1, 1.2}}, Mesh -> None, | |
PlotStyle -> Directive[Yellow, Specularity[White, 20]]], | |
Graphics3D[ | |
{ | |
Red, Specularity[White, 10], Cone[{{0, 0.5, 0.2}, {0, 1, 0.2}}, 0.2], | |
Black, Specularity[White, 10], Ball[{{0.25, 0.7, 0.4}, {-0.25, 0.7, 0.4}}, 0.05] | |
}], | |
RegionPlot3D[z <= 0.15 Exp[-10 (y + 1/7)^2] Sin[30 y] + 1.1, | |
{x, -0.05, 0.05}, {y, -0.4, 0.35}, {z, 0.5, 1.2}, Mesh -> None, PlotStyle -> Red] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment