চিত্র:SphereCoverStriped.png

পাতাটির বিষয়বস্তু অন্যান্য ভাষায় নেই।
এই ফাইলটি উইকিমিডিয়া কমন্স থেকে নেওয়া। মূল পাতাটি দেখতে ক্লিক করুন।
উইকিপিডিয়া, মুক্ত বিশ্বকোষ থেকে

পূর্ণ রেজোলিউশন(৭০০ × ৬৬৩ পিক্সেল, ফাইলের আকার: ১১৯ কিলোবাইট, এমআইএমই ধরন: image/png)

এই ফাইলটি উইকিমিডিয়া কমন্স থেকে নেওয়া। সেখানের বর্ণনা পাতার বিস্তারিত নিম্নে দেখানো হলো। (সম্পাদনা)
উইকিমিডিয়া কমন্স, মুক্ত লাইসেন্সযুক্ত মিডিয়ার একটি ভান্ডার। আপনি সাহায্য করতে পারেন

সারাংশ

বিবরণ
English: A covering of a sphere by two overlapping (slightly more than) hemispheres and their intersection using striped patterns for clarity.
তারিখ
উৎস Own work using POV-Ray
লেখক RobHar

Data file

The following is the POV-Ray code used to produce this output.

#include "colors.inc"
#include "shapes.inc"   
#include "textures.inc"

camera
{
       location <0, 2, -3>
       look_at <0, 0, 0>
}

//Striped textures
#declare bluestripes = texture
       {
               pigment
               { 
                       gradient y
                       colour_map{[0 rgb <0,0,1>][0.1 rgb <1,1,1>]}
               }
               scale 0.1
               finish { ambient 0.3 }
               rotate <0,0,90>
       }
        
#declare redstripes = texture
       {
               pigment
               {
                       gradient y
                       colour_map{[0 rgb <0.8,0,0>][0.1 rgb <1,1,1>]}
               }
               scale 0.1
               finish { ambient 0.3 }          
       }
       
#declare blueredstripes = texture
       {        
               pigment
               {
                       gradient y
                       colour_map{[0 rgb <0.8,0,0>][0.1 rgb <1,1,1>]}
               }
               scale 0.1
               finish { ambient 0.3 }   
       }              
       texture
       {
               pigment
               {
                       gradient y
                       colour_map{[0 rgb <0,0,0.8>][0.1 rgb <1,1,1> filter 1]}
               }
               scale 0.1
               finish { ambient 0.3 }
               rotate <0,0,90>  
       }

//Blue part of sphere
object
{
sphere
{
       <0, 0, 0>, 1
       texture
       {
               bluestripes
       }
}
clipped_by{plane{-y,-0.15}}

rotate <23,0,23>         
}

//Red part of sphere
object
{
sphere
{
       <0, 0, 0>, 1
       texture
       {
               redstripes          
       }
}
clipped_by{plane{y,0.15}}

rotate <23,0,23>        
}

//Middle part of sphere
object
{
sphere
{
       <0, 0, 0>, 1
       texture
       {
               blueredstripes
       }
}
clipped_by{plane{y,0.15}}
clipped_by{plane{-y,0.15}}

rotate <23,0,23>        
}   

//Patterned tiles for legend
#declare tile = object
       {
               plane
               {
                       <0,2,-3>, 0
                       clipped_by{plane{y,0.12}}
                       clipped_by{plane{-y,0.12}}
                       clipped_by{plane{x,0.17}}
                       clipped_by{plane{-x,0.17}}
                       translate <-0.02,-0.8,-1.9>
               }
       }

//Blue striped tile
object
{
       tile
       texture
       {
               bluestripes
       }
       scale 0.7
       translate <-0.67,0,0>
}

//Blue and Red striped tile
object
{
       tile
       texture
       {
               blueredstripes
       }
       scale 0.7
}

//Red striped tile
object
{
       tile
       texture
       {
               redstripes
       }
       scale 0.7
       translate <0.62,0,0>
}

//Letters for legend        
text {
       ttf "cyrvetic.ttf" "A" 0.05, 0
       pigment
       { 
               colour Blue
       }
       finish { ambient 0.3 }
       scale 0.3          
       translate -0.85*x -1.2*y -0.5*z
       rotate <33.7,0,0>
}

text {
       ttf "cyrvetic.ttf" "B" 0.05, 0
       pigment
       {
               colour Red
       }                
       finish { ambient 0.3 }
       scale 0.3             
       translate 0.6*x -1.2*y -0.5*z
       rotate <33.7,0,0>
}

text {
       ttf "cyrvetic.ttf" "A" 0.05, 0
       pigment { colour Blue }
       finish { ambient 0.3 }
       scale 0.3             
       translate -0.34*x -1.2*y -0.5*z
       rotate <33.7,0,0>
}

text {
       ttf "cyrvetic.ttf" " U " 0.05, 0
       pigment { colour Black }
       finish { ambient 0.3 }
       rotate <180,0,0>
       scale 0.3             
       translate -0.2*x -0.977*y -0.5*z
       rotate <33.7,0,0>
}

text {
       ttf "cyrvetic.ttf" "B" 0.05, 0
       pigment
       {
               colour Red
       }                
       finish { ambient 0.3 }
       scale 0.3             
       translate 0.12*x -1.2*y -0.5*z
       rotate <33.7,0,0>
}

//Empty background
plane
{
       <0, 1, 0>, -2
       no_image
}                               

light_source { <0, 3, -2> color White}

লাইসেন্স প্রদান

Public domain আমি, এই কাজের স্বত্বাধিকারী, এতদ্দ্বারা আমি এই কাজকে পাবলিক ডোমেইন লাইসেন্সের আওতায় প্রকাশ করলাম। এটি বিশ্বব্যাপী প্রযোজ্য হবে।
কিছু দেশে এটি আইনত সিদ্ধ নাও হতে পারে, যদি তাই হয়:
আমি যে-কাউকে এই কাজটি যেকোনো উদ্দেশ্যে, বিনাশর্তে ব্যবহারের অনুমতি প্রদান করছি, যদি না সেই শর্তগুলো আইনত প্রয়োজনীয় হয়।

ক্যাপশন

এই ফাইল কি প্রতিনিধিত্ব করছে তার এক লাইন ব্যাখ্যা যোগ করুন

এই ফাইলে চিত্রিত আইটেমগুলি

যা চিত্রিত করে

ফাইলের ইতিহাস

যেকোনো তারিখ/সময়ে ক্লিক করে দেখুন ফাইলটি তখন কী অবস্থায় ছিল।

তারিখ/সময়সংক্ষেপচিত্রমাত্রাব্যবহারকারীমন্তব্য
বর্তমান১৭:৩৯, ১৭ ডিসেম্বর ২০০৮১৭:৩৯, ১৭ ডিসেম্বর ২০০৮-এর সংস্করণের সংক্ষেপচিত্র৭০০ × ৬৬৩ (১১৯ কিলোবাইট)RobHar{{Information |Description={{en|1=A covering of a sphere by two overlapping (slightly more than) hemispheres and their intersection using striped patterns for clarity.}} |Source=Own work using POV-Ray |Author=RobHar |Date=2008-12-17 |Permi

নিচের পৃষ্ঠা(গুলো) থেকে এই ছবিতে সংযোগ আছে:

ফাইলের বৈশ্বিক ব্যবহার

নিচের অন্যান্য উইকিগুলো এই ফাইলটি ব্যবহার করে: