Description: The I Ching consists of 64 hexagrams. A hexagram is a figure composed of six stacked horizontal lines (爻 yáo), where each line is either Yang (an unbroken, or solid line), or Yin (broken, an open line with a gap in the center). There are 64 hexagrams in all, each representing an archetypal situation in life. I am working on recreating the following image using Processing http://baharna.com/iching/images/Plate2_Fig1_Hexagrams_FuHsi.gif Code on Github
Description: 2021-03-16-001 { fractal: title="2021-03-16-001" width=1593 height=912 layers=1 credits="Rupert Russell;3/16/2021;rurussell;7/26/2018;Rupert Russell\ ;8/9/2015" layer: caption="Background" opacity=100 method=linear mapping: center=-0.5/0 magn=1.2 formula: maxiter=25000 filename="Standard.ufm" entry="Mandelbrot" p_start=0/0 p_power=2/0 p_bailout=128 inside: transfer=none outside: density=16 transfer=cuberoot repeat=no filename="Standard.ucl" entry="Basic" p_type=Iteration gradient: smooth=yes rotation=142 index=406 color=0 index=106 color=0 index=162 color=255 index=255 color=0 index=307 color=255 index=314 color=39 opacity: smooth=no index=0 opacity=255 }
Description: // Porcessing code on github at: https://github.com/rupertrussell/geometric_eye // Inspired by https://www.youtube.com/watch?v=hkCakDslpXM // Dearing Wang https://www.youtube.com/channel/UCUfc5V23Oy_XD99LHYPvp4Q // 130K subscribers // Geometric Eye White Centre // Thanks to Chrisir on https://forum.processing.org/one/topic/scrible-and-color.html for the flood fill code
Description: // Porcessing code on github at: https://github.com/rupertrussell/geometric_eye // Inspired by https://www.youtube.com/watch?v=hkCakDslpXM // Dearing Wang https://www.youtube.com/channel/UCUfc5V23Oy_XD99LHYPvp4Q // 130K subscribers // Geometric Eye White Centre // Thanks to Chrisir on https://forum.processing.org/one/topic/scrible-and-color.html for the flood fill code
Description: Inspired by the work of Dan Catt see: https://youtu.be/ko6YCbfKtQg?t=585 Processing code Github at: https://github.com/rupertrussell/10print_007 See an emulator online at: https://scruss.com/cpc/6128s.html?stardoj.dsk/10%20PRINT%20CHR$(199+2*RND);:%20GOTO%2010 Type Run and press enter to run the program :-)
Description: 28-12-2008-011 { fractal: title="28-12-2008-011" width=480 height=480 layers=1 credits="Rupert;12/28/2008" layer: caption="Background" opacity=100 mapping: center=0/0 magn=.98 formula: maxiter=100 filename="Standard.ufm" entry="Mandelbrot" p_start=0/0 p_power=2/0 p_bailout=4 inside: transfer=none solid=4294967040 outside: density=0.1 transfer=linear filename="sam.ucl" entry="TruchetTiles" p_mode=Roundy p_size=1.0 p_rot=0.0 p_thick=0.1 p_seed=1234567890 gradient: smooth=no rotation=-148 index=30 color=0 index=35 color=16777215 index=65 color=16777215 index=74 color=0 index=83 color=0 index=92 color=0 index=214 color=0 index=222 color=16776960 index=-156 color=16777215 index=-128 color=16121855...
Description: !http://rupert.id.au/redbubble/images/RB_Fitted_Scoop_Template-001_small.png! /* Warning Radiation created with Processing see "processing.org":http://processing.org/ */ void setup(){ size(700,700); background(255,255,0); smooth(); noStroke(); fill(0); } void draw(){ fill(255,255,0); arc(width/2, height/2, 650, 650, 0, 1.05); fill(0); arc(width/2, height/2, 650, 650, 1.05, 2.1); fill(255,255,0); arc(width/2, height/2, 650, 650, 2.1, 3.15); fill(0); arc(width/2, height/2, 650, 650, 3.15, 4.2); fill(255,255,0); arc(width/2, height/2, 650, 650, 4.20, 5.25); fill(0); arc(width/2, height/2, 650, 650, 5.25, 6.3); fill(255,255,0); ellipse(width/2, he...
Description: Created using "Processing":http://openprocessing.org/sketch/12951 with code by "rebirth":http://openprocessing.org/user/6463 http://openprocessing.org/sketch/12951 "YinYang Fractal" by rebirthhttp://www.openprocessing.org/sketch/12951Licensed under Creative Commons Attribution ShareAlikehttps://creativecommons.org/licenses/by-sa/2.0https://creativecommons.org/licenses/GPL/2.0/ /*YinYang Fractal created by rebirth This project was a lot of fun. INTERFACE: Hold down the left mouse button to zoom in to the point under the cursor. Hold down the right mouse button to zoom out. (Mouse position matters too.) BUGS: Only problem I can see is that it takes too much processing power to draw the arcs when the yinyan i...
Description: !http://ih0.redbubble.net/image.10971585.8101/ic,x350,iphone5_deflector.png!:http://www.redbubble.com/people/rupertrussell/works/8058101-warning-radiation?c=103954-iphone-cases I have just discovered that according to the standard the symbol should be Magenta or Purple and not black. Symbols prescribed by this paragraph shall use the conventional radiation caution colors (magenta or purple on yellow background). The symbol prescribed by this paragraph is the conventional three-bladed design: FIGURE G-10 RADIATION SYMBOL (For "Figure G-10":https://www.osha.gov/OshStd_gif/10ZFZ_10.gif, Click Here) /* Warning Radiation created with Processing see "processing.org":http://processing.org/ */ void setup(){ size(700,700); ...
Description: Created with "processing":https://processing.org // See "TAU":https://processing.org:8443/reference/TAU.html // https://tauday.com/tau-manifesto void setup() { size(770, 770); } void draw() { float x = width * 0.35; float y = height * 0.35; float d = 770; background(0); strokeWeight(d/100); arc(x, y, d, d, 0, QUARTER_PI); arc(x, y, d-(d*0.25), d-(d*0.25), 0, HALF_PI); arc(x, y, d-(d*0.5), d-(d*0.5), 0, TAU /2); arc(x, y, d-(d*0.75), d-(d*0.75), 0, TAU); save("TAU-770.png"); exit(); }
Description: !http://www.rupert.id.au/images/redbubble/concentric01.jpg! Created with "Ultra Fractal":http://www.ultrafractal.com/ version 4.01 26-12-2008-012 { fractal: title="26-12-2008-012" width=640 height=480 layers=1 credits="Rupert Russell;12/26/2008" layer: caption="Background" opacity=100 mapping: center=-1.7692707111695472/0.0569176768789583808 magn=14179040788077.6144 formula: maxiter=50000 filename="Standard.ufm" entry="FastMandel" p_start=0/0 p_bailout=4.0 inside: transfer=none outside: transfer=linear filename="anv.ucl" entry="color-5" gradient: smooth=yes rotation=174 index=474 color=156 index=174 color=8716288 index=274 color=16121855 index=374 color=46591 opacity: smooth=no index=0 op...
Description: 20180708005 { ::YVVpKin29hVWPutNQ43Xg9/ggfNYdEpk8RDYBaSRACQPAS23XQLRZzuSiaJptlM6P+O8SiyZ RfyzlIH+NHcorl0SNt5Xe8hkENX3wIrwpodpbT3lkmWsK5KvSfiUkmmcixPeSbJbojMpigMf VpkVx1KyK5Z5Zli108pNfc/HNryn++5emUn8dvcECEb0Us6xHsrhdfLp9auojs6z0yXPKFn7 qWlI6plc9IBBbXLTfSURaP3o59Ul6xHap998ujuPn1pZSyTprT3Xg2Uknm/R4boH7Ipr3ltP Htto4xHqFSYBo2PplOwNfDs4pJgLWeiV+KRUXnUzbYd0WAG+hm2VRlVrPX3uKB2D5IZ1fCyY NHkC9Kz60/iSTlaSKsh9v0LuCrJ2SfgybEn1k8Hfg3p4VM7+WxAa4QluGlol0OVN8BdiOW0+ qbprPX2YXf/u+8Je3fLPw1PLp9qv9tn+Bt9DgdrgN6CEIMgHe9WgrVUxI/4cLQSrukRGZKnf WKaISGtJpGc5xG2X7KJ0DKQD4H91N0LCJ5LNCFTpNCPJZqTimKCC4qdRa4EWDuOGIuCyrfpu rGRKNLjlG7o7fp7s1PgTdnZxKrhNzy4WF2wAigswEQi9k1cl9gMjkQAFFYysOiW23TSnORiz SyvzhQQXJzstmDZmRVl19MWI/a3sfABYFzGt8LhSLZdHh8...
Description: Fractal1 { fractal: title="Fractal1" width=640 height=480 layers=1 credits="rurussell;11/27/2017" layer: caption="Background" opacity=100 mapping: center=-0.5/0 magn=1 formula: maxiter=250 filename="Standard.ufm" entry="Mandelbrot" p_start=0/0 p_power=2/0 p_bailout=128 inside: transfer=none outside: transfer=linear filename="Standard.ucl" entry="Smooth" p_power=2/0 p_bailout=128.0 gradient: smooth=yes rotation=1 index=0 color=16777215 index=141 color=16777215 index=271 color=0 index=293 color=0 index=399 color=512 opacity: smooth=no index=0 opacity=255 }
Description: Created using Corel Draw X5 and "GDG Text Helper Macro":http://macromonster.com/index.php?mod=descr&id_desc=150&keyword=gdg+text&Submit=Go "Negative Version":http://www.redbubble.com/people/rupertrussell/works/9480155-pi-spiral-004 Also available as a "sticker":http://www.redbubble.com/people/rupertrussell/works/9481311-pi-spiral-004-sticker !http://feedjit.com/b/8b7e8a29ee6da453575ffc1ae985422f.png!:http://feedjit.com/joinimg/
Description: This is the best design to use for a Black T-Shirt as the design does not print any black on the T-Shirt it just uses the black shirt fabric for the back background. If you want to a light background for your T-Shirt please use the "alternative version":http://www.redbubble.com/people/rupertrussell/works/16485647-people-power-mandelbrot
Description: !http://feedjit.com/b/e2937b90f7da6a0aabe17e58acf9531c.png!:http://feedjit.com/ir1/e2937b90f7da6a0aabe17e58acf9531c/ counter from "feedjit": http://feedjit.com/joinimg/ !http://ih0.redbubble.net/work.2296349.2.sticker,375x360.untitled-xvi-black-v1.png!:http://www.redbubble.com/products/configure/19143912
Description: 2018-12-29-006 { fractal: title="2018-12-29-006" width=500 height=500 layers=2 credits="rurussell;1/7/2019" layer: caption="Layer 1" opacity=100 mergemode=hardlight mapping: center=-0.5593430865/0 magn=0.93456095 formula: maxiter=250 filename="Standard.ufm" entry="Mandelbrot" p_start=0/0 p_power=2/0 p_bailout=128 inside: transfer=linear filename="Standard.ucl" entry="Default" outside: density=0.1 transfer=sin repeat=no solid=4294967295 filename="sam.ucl" entry="HilbertCurve" p_style=Square p_power=.1 p_niter=4 gradient: smooth=yes rotation=-79 index=35 color=16777215 index=-338 color=16777215 index=87 color=0 index=148 color=0 index=-242 color=16777215 index=199 color=0 index=-200 color=16777...
Description: Created with Ultrafractal 5.04 20160506-002 { fractal: title="20160506-002" width=640 height=480 layers=1 credits="Rupert Russell;5/6/2016" layer: caption="Background" opacity=100 mapping: center=0.16035746121/0.231786409135 magn=4.5196818 formula: maxiter=250 percheck=off filename="tma2.ufm" entry="Brew102Julia" p_bailout=20.0 p_test=mod f_bailfunc=ident p_seed=-0.2665/-1.4115 p_eye=-1.0 p_frog=0.0 p_hen=-0.5/0 p_bat=0/0 p_maid=0/0 p_exp1=1/0 p_exp2=1/0 p_exp3=1/0 p_exp4=1/0 p_exp5=1/0 p_op1=- p_op2=+ p_op3=+ p_group=4 p_invert=no f_fn1=cos f_fn2=flip f_fn3=ident f_fn4=ident f_fn5=ident f_fn6=ident f_fn7=ident inside: transfer=none outside: transfer=linear gradient: smooth=yes index=0 color...
Description: Blog50 { fractal: title="Blog50" width=640 height=480 layers=1 credits="rurussell;10/12/2016" layer: caption="Background" opacity=100 mapping: center=-.7/0 magn=0.38674104 formula: maxiter=250 filename="Standard.ufm" entry="Mandelbrot" p_start=0/0 p_power=2/0 p_bailout=128 inside: transfer=none outside: density=0.001 transfer=cuberoot filename="lkm-special.ucl" entry="aug01-hilbert-spline4" p_niter=0 p_centerll=0.25/0.25 p_centerul=0.25/0.75 p_centerur=0.75/0.75 p_centerlr=0.75/0.25 p_enterexit=0.25 p_control23=0.5/0.75 p_type01=tangent p_type12=tangent p_type34=tangent p_type45=tangent p_xc01=0.25 p_xc12=0.25 p_xc34=0.75 p_yc45=0.25 gradient: smooth=yes rotation=-47 index=17 color=65535 i...
Description: 20151116-005 { fractal: title="20151116-005" width=700 height=594 layers=1 credits="Rupert Russell;11/16/2015" layer: caption="Background" opacity=100 method=multipass mapping: center=0/0 magn=0.37243897 transforms=1 transform: filename="sam.uxf" entry="LogarithmicSpiralTiling" p_use=...alone p_orderx=6.0 p_ordery=12.0 p_slope=.5 p_center=0/0 p_rot=0.0 p_magn=1.0 p_cw=1.0 p_ch=1.0 p_stab=no formula: maxiter=800 percheck=off filename="mjd.ufm" entry="Squaref" p_bailout=0.02 p_mode=Abs p_t1="mirror=0 rot=90" p_t2="mirror=1 rot=0" p_t3="mirror=0 rot=0" inside: transfer=none outside: transfer=linear gradient: smooth=yes rotation=29 index=0 color=11141120 index=115 color=0 index=129 color=0 in...
Description: Created with Ultrafractal 5.04 2015-08-03-004 { ::5mRH6jn2tZVTvNuNQ07Gw/HE0lu7BLTpY540CeY32miWsZbQS6leRgRiSiIUkskUrtzv+OkU 2WyKG+g4b+6NDHOk1aSplw/5lLiisMLnijzQp5rQ7WhuZFCtJOaPry2i3uBF1SZNtW8mdoIO 5IVbwpO7K10Km1gjfqXR12on6NGKn/L7Wndzan3iXuwrvPKlEllJF44vSKfrRL7FVxRSFpkZ PiTRolL6IKFT0E0mKsUNeFKZzdbu7W4f+aUUHpRgRJbv9WU+2d7WuoWq765EvJdkDMnNgvQR 1MOVQ6g06ZLRUR0VJ91dxRgb1HBQuURfAEQ5xRqCjlotY0akzPqClcP4nMIgqiXJMus3iTTQ /emDQWXbogyJowvUA79OZFFrkWw9MCP4lD1gT4MBlodqYKJQVGcz5FZenkDrp/gqP6JvQucB TYYV0wWjmIM1ecBd5CgInFVRB1gSHKJ9iam/D2Huk7k34r6W1RstJ9l8YnZDFAlm1RLs7hY5 KAP44/XENUOsYPz2ePTQ4vo7Fl4jUTIh23S10sQtyl1QUast/d9zCmyDUzgdA83IGbwgSJXq fFi2juoF9b0SZnSCsG6DcRFotyH5vDZnzhu6+LAorMFcRvSNAl5rcm3YTMxt+XlCjFfjbVHh z9BDnmGcw...
Description: 20160506-011 { fractal: title="20160506-011" width=640 height=480 layers=1 credits="Rupert Russell;5/6/2016" layer: caption="Background" opacity=100 method=multipass mapping: center=-0.021930603100665/0.019502753949685 magn=95.884773 formula: maxiter=25000 percheck=conservative filename="lkm.ufm" entry="mitch-mandelbrot" p_manparam=1/0 p_bailout=1000.0 p_bailtype="|z|" inside: transfer=none outside: density=16 transfer=arctan gradient: smooth=yes rotation=-8 index=11 color=16711680 index=37 color=11993088 index=71 color=0 index=129 color=0 index=208 color=0 index=320 color=255 opacity: smooth=no index=0 opacity=255 }