קובץ:Pentatope of 70 spheres animation original.gif

תוכן הדף אינו נתמך בשפות אחרות.
מתוך ויקיפדיה, האנציקלופדיה החופשית

Pentatope_of_70_spheres_animation_original.gif(640 × 480 פיקסלים, גודל הקובץ: 2.63 מ"ב, סוג MIME‏: image/gif, בלולאה, 44 תמונות, 4.4 שניות)

ויקישיתוף זהו קובץ שמקורו במיזם ויקישיתוף. תיאורו בדף תיאור הקובץ המקורי (בעברית) מוצג למטה.

תקציר

תיאור
English: Pentatope of 70 spheres. Animation showing 4-dimensional balls stacked into a 4-dimensional pyramid (5x5x5x5), animated through successive 3-dimensional cross-sections.
Animated GIF (640x480 pixels, 2752828 bytes). Original size
תאריך יצירה
מקור נוצר על־ידי מעלה היצירה. Rendered using POV-Ray and converted with Adobe ImageReady.
 
. Persistence of Vision עם‎‎ נוצרה ה תמונה
יוצר Blotwell
גרסאות אחרות
File:Pentatope of 70 spheres animation large.gif
(320x240 pixels, 866986 bytes)
File:Pentatope of 70 spheres animation.gif
(160x120 pixels, 267189 bytes)
Derivative works of this file:  Pentatope 70 spheres.gif
POV-Ray source
InfoField
  // Pentatope of 70 spheres POV-Ray source by Blotwell
  // Uploaded to Wikimedia Commons
  // and released under GPL
  //
  // Render frames 0 through 43 (43 is blank)
  
  #max_trace_level 15
  #declare sq = 1/sqrt(2);
  #declare T = ((clock-5)/4)*sq;
  #declare vx = <2,0,0>;
  #declare vy = <1,0,1>;
  #declare vw = <1,0,-1>;
  #declare vz = <1,sqrt(5/2),0>;
  
  #declare my_sphere_1 =
  sphere { <0,0,0>,1 pigment { color rgbf <.9,1,.9,.9> }
        finish { refraction 1 ior 1.2 } };
  #declare my_sphere_2 =
  sphere { <0,0,0>,1 pigment { color rgbf <.9,.9,1,.9> }
        finish { refraction 1 ior 1.2 } };
  #declare my_sphere_3 =
  sphere { <0,0,0>,1 pigment { color rgbf <1,1,.8,.9> }
        finish { refraction 1 ior 1.2 } };
  #declare my_sphere_4 =
  sphere { <0,0,0>,1 pigment { color rgbf <1,.9,.9,.9> }
        finish { refraction 1 ior 1.2 } };
  #declare my_sphere_5 =
  sphere { <0,0,0>,1 pigment { color rgbf <.9,.9,.9,.9> }
        finish { refraction 1 ior 1.2 } };
  
  camera {
    location <-8,15,-12>-4*vz
    right <2/3,0,0>
    up <0,1/2,0>
    look_at 4*vz-<0,3,0>
  }
  
  light_source {vx*10+<0,10,0> color rgb <1,1,1>}
  light_source {vy*10+<0,10,0> color rgb <1,1,1>}
  
  plane { <0,1,0>, 0 
  	finish {ambient 0.2}
  	pigment { marble turbulence 1
  		color_map { [0.0 rgb 1] [0.9 rgb 0.9] [1.0 rgb <0.6,0.5,0.5>] }
  		scale 6 } }
  
  plane { <0,-1,0>, -12 
  	finish {ambient 1}
  	pigment { color rgb <.6,.6,.8> } }
  
  union {
  #declare www=0; #while (www<5)
  #declare exe=0; #while (exe<5-www)
  #declare wye=0; #while (wye<5-www-exe)
  #declare tee=(www+wye)*sq*2; #if (tee-1<T) #if (tee+1>T)
  object {my_sphere_1 scale sqrt(1-(T-tee)*(T-tee)) translate y+www*vw+exe*vx+wye*vy}
  #end #end
  #declare wye=wye+1; #end #declare exe=exe+1; #end #declare www=www+1; #end
  
  #declare www=0; #while (www<4)
  #declare exe=0; #while (exe<4-www)
  #declare wye=0; #while (wye<4-www-exe)
  #declare tee=(www+wye)*sq*2+sq; #if (tee-1<T) #if (tee+1>T)
  object {my_sphere_2 scale sqrt(1-(T-tee)*(T-tee)) translate y+vz+www*vw+exe*vx+wye*vy}
  #end #end
  #declare wye=wye+1; #end #declare exe=exe+1; #end #declare www=www+1; #end
  
  #declare www=0; #while (www<3)
  #declare exe=0; #while (exe<3-www)
  #declare wye=0; #while (wye<3-www-exe)
  #declare tee=(www+wye)*sq*2+2*sq; #if (tee-1<T) #if (tee+1>T)
  object {my_sphere_3 scale sqrt(1-(T-tee)*(T-tee)) translate y+2*vz+www*vw+exe*vx+wye*vy}
  #end #end
  #declare wye=wye+1; #end #declare exe=exe+1; #end #declare www=www+1; #end
  
  #declare www=0; #while (www<2)
  #declare exe=0; #while (exe<2-www)
  #declare wye=0; #while (wye<2-www-exe)
  #declare tee=(www+wye)*sq*2+3*sq; #if (tee-1<T) #if (tee+1>T)
  object {my_sphere_4 scale sqrt(1-(T-tee)*(T-tee)) translate y+3*vz+www*vw+exe*vx+wye*vy}
  #end #end
  #declare wye=wye+1; #end #declare exe=exe+1; #end #declare www=www+1; #end
  
  #declare www=0; #while (www<1)
  #declare exe=0; #while (exe<1-www)
  #declare wye=0; #while (wye<1-www-exe)
  #declare tee=(www+wye)*sq*2+4*sq; #if (tee-1<T) #if (tee+1>T)
  object {my_sphere_5 scale sqrt(1-(T-tee)*(T-tee)) translate y+4*vz+www*vw+exe*vx+wye*vy}
  #end #end
  #declare wye=wye+1; #end #declare exe=exe+1; #end #declare www=www+1; #end
  }

רישיון

GNU head מוענקת בכך הרשות להעתיק, להפיץ או לשנות את המסמך הזה, לפי תנאי הרישיון לשימוש חופשי במסמכים של גנו, גרסה 1.2 או כל גרסה מאוחרת יותר שתפורסם על־ידי המוסד לתוכנה חופשית; ללא פרקים קבועים, ללא טקסט עטיפה קדמית וללא טקסט עטיפה אחורית. עותק של הרישיון כלול בפרק שכותרתו הרישיון לשימוש חופשי במסמכים של גנו.
w:he:Creative Commons
ייחוס שיתוף זהה
הקובץ הזה מתפרסם לפי תנאי רישיון קריאייטיב קומונז ייחוס-שיתוף זהה 3.0 לא מותאם.
הנכם רשאים:
  • לשתף – להעתיק, להפיץ ולהעביר את העבודה
  • לערבב בין עבודות – להתאים את העבודה
תחת התנאים הבאים:
  • ייחוס – יש לתת ייחוס הולם, לתת קישור לרישיון, ולציין אם נעשו שינויים. אפשר לעשות את זה בכל צורה סבירה, אבל לא בשום צורה שמשתמע ממנה שמעניק הרישיון תומך בך או בשימוש שלך.
  • שיתוף זהה – אם תיצרו רמיקס, תשנו, או תבנו על החומר, חובה עליכם להפיץ את התרומות שלך לפי תנאי רישיון זהה או תואם למקור.
תבנית רישוי זו הוספה לקובץ כחלק מעדכון רישיון GFDL.
GNU head

היצירה הזאת היא תוכנה חופשית; ניתן להפיץ ו/או לשנות אותה לפי תנאי הרישיון הציבורי הכללי של GNU כפי שפורסם על־ידי המוסד לתכנה חופשית; או גרסה 2 של הרישיון, או כל גרסה עדכנית יותר. היצירה הזאת מופצת בתקווה שתביא תועלת, אך ללא כל אחריות שהיא; אפילו לא אחריות מרומזת לצורכי מסחר או התאמה למטרה מסוימת. יש לעיין בגרסה 2 ובגרסה 3 של הרישיון הציבורי הכללי של GNU לפרטים נוספים.

כיתובים

נא להוסיף משפט שמסביר מה הקובץ מייצג

פריטים שמוצגים בקובץ הזה

מוצג

היסטוריית הקובץ

ניתן ללחוץ על תאריך/שעה כדי לראות את הקובץ כפי שנראה באותו זמן.

תאריך/שעהתמונה ממוזערתממדיםמשתמשהערה
נוכחית17:18, 6 בנובמבר 2009תמונה ממוזערת לגרסה מ־17:18, 6 בנובמבר 2009‪480 × 640‬ (2.63 מ"ב)DatumizerReverted to version as of 07:23, 27 August 2005 ... I'll upload the new version as a separate file.
03:12, 5 בנובמבר 2009תמונה ממוזערת לגרסה מ־03:12, 5 בנובמבר 2009‪512 × 512‬ (3.49 מ"ב)DatumizerBrighter, happier spheres! :)
10:23, 27 באוגוסט 2005תמונה ממוזערת לגרסה מ־10:23, 27 באוגוסט 2005‪480 × 640‬ (2.63 מ"ב)BlotwellLargest version of Image:Pentatope of 70 spheres animation.gif {{GFDL}}

אין בוויקיפדיה דפים המשתמשים בקובץ זה.

שימוש גלובלי בקובץ

אתרי הוויקי השונים הבאים משתמשים בקובץ זה: