Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. ReIm[z_]:=N[{Re[z], Im[z]}];
  2.  
  3. ReIm[ComplexInfinity]={0,1000};
  4.  
  5. Attributes[ReIm]=Listable;
  6.  
  7. LFT[mat_List][z_?NumericQ] := reim[Divide @@ (mat - {z, 1})];
  8. Off[Power::infy, General::dbyz, Divide::infy];
  9.  
  10. polys = Table[{FaceForm[Hue[Random[], 0.6]],
  11. Polygon[LFT[w][triangle[]]]}, {w, G}];
  12.  
  13. Graphics[{EdgeForm[Black], polys}, PlotRange -> {{-3, 4}, {0, 2.4}},
  14. Frame -> True, FrameTicks -> False]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement