I want to solve the below code to create an origami pattern
Manipulate [{
{V},
{H},
{L},
{S},
{a},
{b},
{c},
{d},
{e},
{f},
{g},
{h},
{i},
{k}
} := {
{Sqrt[1 + \[Micro]]},
{Sqrt[\[Micro]]/v},
{1/v},
{Sqrt[1 - \[Micro]]},
{S k},
{-L},
{H},
{S - V H},
{L},
{S L - V},
{-S k},
{-S - V H},
{-S L - V},
{-L - V}
}; Graphics3D@
Polygon@{{
{a, b, c, d},
{d, c, e, f},
{g, b, c, h},
{c, h, i, e}
} }[[All, All, 1]] /. Null -> 0, {\[Micro], 0, 1}]
The link for the result is here
Please help me out with your expertise people.



Solve, thenReplaceAllwith the solution! – CA Trevillian Aug 17 '19 at 07:10ReplaceAllbut the result is still an empty box – genie_prabhu Aug 17 '19 at 16:39lhs:=rhsthen use solve to find the solution, name thissol, then useReplaceAllon that to apply it to the set, then wrap that in the manipulate :) – CA Trevillian Aug 17 '19 at 22:04