Mug_and_Torus_morph.gif(२४० × २४० चित्राणवः (pixels), सञ्चिकायाः आकारः: ४९७ KB, MIME-प्रकारः: image/gif, चक्रितम्, ५८ पृष्ठानि, १२ s)

Wikimedia Commons इत्यतः उद्धृता एषा सञ्चिका अन्येषु प्रकल्पेषु उपयोगार्हा । अस्याः सञ्चिकायाः सञ्चिकाविवरणपृष्ठम् इत्यत्र उपलभ्यमानं विवरणम् अधोलिखितं वर्तते ।

सारांशः

वर्णनम्
English: A coffee mug morphing into a torus, a popular example in topology.
Türkçe: Bir kahve bardağının simide sürekli deformasyonunu gösteren bir homeomorfizma animasyonu.
 
इस चित्र को POV-Ray की मदद से बनाया गया था.
स्रोतः स्वकार्यम्
लेखकः Lucas Vieira
अन्यानि संस्करणानि
File:Mug and Torus morph frame.png
single frame suitable for thumbnail purposes

विकिपीडिया

 यह अंग्रेज़ी विकिपीडिया पर एक प्रदर्शित चित्र (Featured pictures) है और इसे सर्वोत्तम चित्रों में से एक माना गया है। इसका नामांकन यहाँ देखें।
 यह तुर्की विकिपीडिया पर एक प्रदर्शित चित्र (Seçkin resimler) है और इसे सर्वोत्तम चित्रों में से एक माना गया है। इसका नामांकन यहाँ देखें।

अगर आपको लगता है कि इस फ़ाइल को विकिमीडिया कॉमन्स पर भी प्रदर्शित किया जाना चाहिए, इसे ज़रूर नामांकित करें
अगर आपके पास किसी उचित कॉपीराइट लाइसेंस के अंतर्गत प्रकाशित समान गुणवत्ता का कोई चित्र है, इसे अपलोड करें, टैग करें, और नामांकित करें

POV-Ray source code

/* 
Torus to mug morphing animation, by Lucas Vieira - January 17, 2007 - Coded in: POV-Ray 3.6
License: Public Domain

Info
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
Author user page: http://en.wikipedia.org/wiki/User:LucasVB
The final animation at Wikimedia Commons: [[:File:Mug_and_Torus_morph.gif]]


Notes
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
Several modifications were done for each part of the animation and I didn't keep them all here.
So if you wish to reproduce the animation, you'll have to play with this code quite a bit. :)

*/


background { color rgb 1 }

global_settings { assumed_gamma 1.5 }

camera {
	orthographic
	location <0,4,-5>*0.8
	look_at <0,0,0>
	//rotate -45*y
}

#declare dist = 0.2;
light_source {
	<0,0,0>, 1
	//translate <-3,5,-5>*1
	translate 5*y
	translate -5*z
	translate 2*x
}


#declare a = 1;

// Cylinders for the mug shape
#declare C_a = function { pow(x / a,2) + pow(z / a,2)-1.5 }
#declare C_b = function { pow(x / a,2) + pow(z / a,2)-1.2 }
#declare B_b = function { (y+1.3) }


// Torus (handle and the morphing target)
#declare R = 1; #declare r = 0.22;
#declare T_a = function { pow(R - sqrt(pow(x,2) + pow(y,2)),2) + pow(z,2) - pow(r,2) }
#declare R2 = 1; #declare r2 = 0.5;
#declare T_b = function { pow(R2 - sqrt(pow(x,2) + pow(y,2)),2) + pow(z,2) - pow(r2,2) }

// Hollow mug (concave)
#declare Mug = function { min(min(max(C_a(x,y,z),B_b(x,y,z)),max(C_a(x,y,z),-C_b(x,y,z))),max(T_a(x-1,y,z),-C_a(x,y,z))) }

// Solid mug (cylinder with handle, convex)
#declare Mug2 = function { min(C_a(x,y,z),max(T_a(x-1,y,z),-C_a(x,y,z))) }


#declare c = 0.5;

// Linear to smooth interpolation
#declare Int = pow(sin(clock*pi/2),2);


// Functions for the mug parts, left as backups.
// max(C_a(x,y,z),B_b(x,y,z)) bottom
// max(C_a(x,y,z),-C_b(x,y,z)) sides
// min(max(C_a(x,y,z),B_b(x,y,z)),max(C_a(x,y,z),-C_b(x,y,z))) bottom+sides
// max(T_a(x-1,y,z),-C_a(x,y,z)) handle
// min(min(max(C_a(x,y,z),B_b(x,y,z)),max(C_a(x,y,z),-C_b(x,y,z))),max(T_a(x-1,y,z),-C_a(x,y,z))) full mug
  	

// Render as isosurface or CSG.
// Isosurface is used in the transitional states.
#declare RenderIsosurface = 0;
#if (RenderIsosurface)
union {
	isosurface {
		function {
			// Add previously defined object functions using Int and (1-Int) as to generate the smooth transition
	    	//Mug2(x,y,z)*(1-Int) +
			Mug(x,y,z)
			//T_b(x-1,y,z)*Int
		}
	  	contained_by { box { -<3,1.5,3>, <3,1.5,3> } }
		accuracy 0.001
		max_gradient 5 // 10
		//rotate -90*x
	}
	cylinder {
		<0,-1.3+Int*2.8,0>, <0,-1.5,0>, sqrt(1.5)
	}
	pigment {
  		color rgb <0.6,0.8,1> transmit 0.1
	}
	finish {
		specular 0.5
		roughness 0.01
		ambient 0.2
	}
}
#else
union {
	difference {
		cylinder {
			-1.5*y, 1.5*y, sqrt(1.5)
		}
		cylinder {
			-2*y, 2*y, sqrt(1.2)
		}
	}
	difference {
		torus {
			R, r
			rotate 90*x
			translate x
		}
		cylinder {
			-1.5*y, 1.5*y, sqrt(1.5)
		}
	}
	cylinder {
		<0,0-0.25+Int*(1.5+0.25),0>, <0,-1.5,0>, sqrt(1.5)
	}
	pigment {
  		color rgb <0.6,0.8,1> transmit 0.1
	}
	finish {
		specular 0.5
		roughness 0.01
		ambient 0.2
	}
}
#end

/* END OF FILE */

Updated January 12, 2007

  1. New colors: blue hue, brighter, softer shadows
  2. Changed light angle
  3. Non-linear interpolation: looks smoother and less boring
  4. Faster frame rate
  5. Cropped to relevant area
  6. Overall, smaller size for a better-looking image.

Updated January 20, 2007

  1. Removed dithering. Image now has visible color bands, but at least thumbnails won't look excessively grainy.

Updated March 1, 2007

  1. More saturation of colors

अनुमतिदानम्

Public domain अहम्, अस्य कार्यस्य कृतिस्वाम्यवान्, इदम् अत्र योजयामि सार्वजनिकक्षेत्रम्। इदं जागतिकस्तरे आन्वितं भवति ।
केषुचित् देशेषु इदं न्यायालयदृष्ट्या असाध्यं स्यात् ; यदि तथा :
निर्बन्धं विना अस्याः कृतेः उपयोगं यःकोपि कस्यापि निमित्तं उपयोक्तुम् अनुमतिं यच्छामि न्यायविधेः निर्बन्धः यदि न स्यात् ।

Captions

Add a one-line explanation of what this file represents
A coffee mug turning into a torus, a popular example in topology.

Items portrayed in this file

चित्रण हिन्दी

रचियता हिन्दी

some value

Wikimedia username आङ्ग्लभाषा: LucasVB

source of file आङ्ग्लभाषा

original creation by uploader आङ्ग्लभाषा

सञ्चिकायाः इतिहासः

सञ्चिका तत्समये कीदृशी आसीदिति द्रष्टुं दिनाङ्कः/समयः नुद्यताम् ।

दिनाङ्कः/समयःलघ्वाकृतिःआयामाःसदस्यःटिप्पणी
वर्तमानः००:५६, २ मार्च् २००७००:५६, २ मार्च् २००७ समये विद्यमानायाः आवृत्तेः अंगुष्ठनखाकारः२४० × २४० (४९७ KB)LucasVBback to old cropping - looks a lot better
००:४९, २ मार्च् २००७००:४९, २ मार्च् २००७ समये विद्यमानायाः आवृत्तेः अंगुष्ठनखाकारः१८९ × २४० (४७७ KB)LucasVBmore saturation of colors
०८:३०, २० जनवरी २००७०८:३०, २० जनवरी २००७ समये विद्यमानायाः आवृत्तेः अंगुष्ठनखाकारः२४० × २४० (४६५ KB)LucasVBRemoved dithering since it was causing excessive grainy-ness in thumbnails. Image now has color bands, but at least thumbnails won't look bad.
०५:४९, १२ जनवरी २००७०५:४९, १२ जनवरी २००७ समये विद्यमानायाः आवृत्तेः अंगुष्ठनखाकारः२४० × २४० (४९७ KB)LucasVBBetter version -- bright color+softer shadows+color=blue instead of an ugly yellowish-brown --- non-linear interpolation (looks a lot smoother) --- cropped to relevant area -- all in all, looks better and the file is a hundred kilobytes smaller :)
०६:०२, २ अक्टोबर् २००६०६:०२, २ अक्टोबर् २००६ समये विद्यमानायाः आवृत्तेः अंगुष्ठनखाकारः३२० × २४० (५५४ KB)LucasVBA coffee w:mug morphing into a w:torus.

अनया सञ्चिकया सह न किमपि पृष्ठं सल्लग्नम् अस्ति

वैश्विकसञ्चिकायाः उपयोगः

एतां सञ्चिकाम् अधोनिर्दिष्टाः वीक्यः उपयुञ्जते:

अस्याः सञ्चिकायाः वैश्विकोपयोगस्य अधिकविवरणम् दृश्यताम् ।

"https://sa.wikipedia.org/wiki/सञ्चिका:Mug_and_Torus_morph.gif" इत्यस्माद् प्रतिप्राप्तम्