לדלג לתוכן

קובץ:Venn 0000 0001 0001 0110.png

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

לקובץ המקורי(1,024 × 1,024 פיקסלים, גודל הקובץ: 177 ק"ב, סוג MIME‏: image/png)

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

תקציר

תיאור
The 15 cells of these Venn diagrams (except the surrounding) correspond to the vertices of the tesseracts tetrahedral shadow.

This is a 4 shphere Venn diagram, representing a 4-ary Boolean function.


The spheres stand for sets or statements A, B, C, D.


Examples:


        
        


        
        


        
        


The POV-Ray source is given for 0000 0001 0001 0110 and 1111 1111 0000 0000.
תאריך יצירה
מקור נוצר על־ידי מעלה היצירה
יוצר
Watchduck
You can name the author as "T. Piesk", "Tilman Piesk" or "Watchduck".
גרסאות אחרות
RGBY

תמונה זו נבחנה על פי אמות המידה לתמונת איכות והיא נחשבת לתמונה איכותית.

العربية  جازايرية  беларуская  беларуская (тарашкевіца)  български  বাংলা  català  čeština  Cymraeg  Deutsch  Schweizer Hochdeutsch  Zazaki  Ελληνικά  English  Esperanto  español  eesti  euskara  فارسی  suomi  français  galego  עברית  हिन्दी  hrvatski  magyar  հայերեն  Bahasa Indonesia  italiano  日本語  Jawa  ქართული  한국어  kurdî  Lëtzebuergesch  lietuvių  македонски  മലയാളം  मराठी  Bahasa Melayu  Nederlands  Norfuk / Pitkern  polski  português  português do Brasil  rumantsch  română  русский  sicilianu  slovenčina  slovenščina  shqip  српски / srpski  svenska  தமிழ்  తెలుగు  ไทย  Tagalog  Türkçe  toki pona  українська  vèneto  Tiếng Việt  中文  中文(简体)  中文(繁體)  +/−


This file was created with POV-Ray, and uploaded with Commonist.

רישיון

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


POV-Ray source

#include "colors.inc"    
        
        
global_settings{max_trace_level 20}
        
                                                     
background {color White}                                                      
                                                       
                                                       
camera { angle 3.2
        location <1000,1000,1000>
        look_at  <-0,0.2,0>  
        up    < 0, 1, 0>
        right   < 1, 0, 0>
       }
                                        
light_source { <100,90,120>
               color Gray
               shadowless
             }   
             
light_source { <50,70,90>
               color Gray
               shadowless
             }   

      
/////////////////////////////////////////////////////////////////////////////

#declare ss0 = sphere{< 10, 10, 10>,24}    ///small spheres
#declare ss1 = sphere{< 10,-10,-10>,24}          
#declare ss2 = sphere{<-10,-10, 10>,24}    
#declare ss3 = sphere{<-10, 10,-10>,24} 

#declare bs0 = sphere{< 10, 10, 10>,26}    ///big spheres
#declare bs1 = sphere{< 10,-10,-10>,26}          
#declare bs2 = sphere{<-10,-10, 10>,26}    
#declare bs3 = sphere{<-10, 10,-10>,26}     
/////////////////////////////////////////////////////////////////////////////
                
                
                
                
                
                
union {////////////////BIG UNION
         
            

      
#declare digitsum1 =
union
{
///1
difference
{
object{ss0} 
union{ object{bs1} object{bs2} object{bs3} }  
}

///2
difference
{
object{ss1} 
union{ object{bs0} object{bs2} object{bs3} }  
}

///4
difference
{
object{ss2} 
union{ object{bs0} object{bs1} object{bs3} }  
}

///8
difference
{
object{ss3} 
union{ object{bs0} object{bs1} object{bs2} }  
}   
pigment{color rgbt<0.95,0.95,0.95,0.95>} 
//pigment{color Red}  
}
object{digitsum1}

     
         
     
#declare digitsum2 =
union
{    
///3
difference
{
intersection{ object{ss0} object{ss1} }   
union{ object{bs2} object{bs3} }                                         
}   

///5
difference
{
intersection{ object{ss0} object{ss2} }   
union{ object{bs1} object{bs3} }                                         
}   

///6
difference
{
intersection{ object{ss1} object{ss2} }   
union{ object{bs0} object{bs3} }                                         
}     

///9
difference
{
intersection{ object{ss0} object{ss3} }   
union{ object{bs1} object{bs2} }                                         
}    

///10
difference
{
intersection{ object{ss1} object{ss3} }   
union{ object{bs0} object{bs2} }                                         
}
   
///12
difference
{
intersection{ object{ss2} object{ss3} }   
union{ object{bs0} object{bs1} }                                        
}  
pigment{color rgbt<0.9,0.9,0.9,0.9>} 
//pigment{color Red}                   
}                  
object{digitsum2}                  
                     
                     
          
           
#declare digitsum3 =
union
{
///7
difference
{    
intersection{ object{ss0} object{ss1} object{ss2} }  
object{bs3} 
}  
       
///11
difference
{    
intersection{ object{ss0} object{ss1} object{ss3} }  
object{bs2} 
}         
          
///13
difference
{    
intersection{ object{ss0} object{ss2} object{ss3} }  
object{bs1} 
}         
  
///14
difference
{    
intersection{ object{ss1} object{ss2} object{ss3} }  
object{bs0} 
}  
//pigment{color rgbt<0.85,0.85,0.85,0.85>} 
pigment{color Red} 
}          
object{digitsum3}  


///15
intersection{ object{ss0} object{ss1} object{ss2} object{ss3} 
pigment{color rgbt<0.8,0.8,0.8,0.8>}
//pigment{color Red}     
}      
         
         
         


rotate -33*z  
rotate 35*x    
rotate 5*y            
rotate <0,clock*5,0>
}/////////////////BIG UNION

כיתובים

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

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

מוצג

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

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

תאריך/שעהתמונה ממוזערתממדיםמשתמשהערה
נוכחית22:03, 4 באוגוסט 2016תמונה ממוזערת לגרסה מ־22:03, 4 באוגוסט 2016‪1,024 × 1,024‬ (177 ק"ב)Watchduckundo vandalism by User:Sahstar
03:00, 24 ביוני 2016תמונה ממוזערת לגרסה מ־03:00, 24 ביוני 2016‪1,024 × 1,024‬ (169 ק"ב)SteinsplitterBotBot: Image rotated by 270°
17:01, 2 בפברואר 2011תמונה ממוזערת לגרסה מ־17:01, 2 בפברואר 2011‪1,024 × 1,024‬ (177 ק"ב)Watchducktransparent background
03:38, 2 בפברואר 2011תמונה ממוזערת לגרסה מ־03:38, 2 בפברואר 2011‪1,000 × 1,000‬ (115 ק"ב)Watchduck

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

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

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