படிமம்:Midsphere.png

மற்ற மொழிகளில் ஆதரிக்கப்படாத பக்க உள்ளடக்கம்.
கட்டற்ற கலைக்களஞ்சியமான விக்கிப்பீடியாவில் இருந்து.

மூலக்கோப்பு(1,024 × 1,024 படவணுக்கள், கோப்பின் அளவு: 115 KB, MIME வகை: image/png)

இது விக்கிமீடியா பொதுக்கோப்பகத்தில் இருக்கும் ஒரு கோப்பாகும். இக்கோப்பைக் குறித்து அங்கே காணப்படும் படிம விளக்கப் பக்கத்தை இங்கே கீழே காணலாம்.
பொதுக்கோப்பகம் ஒரு கட்டற்ற கோப்புகளின் சேமிப்பகமாகும். நீங்களும் உதவலாம்.

சுருக்கம்

விளக்கம்
English: The midsphere of a polyhedron. The red circles indicate the points at which a cone, with its apex at a vertex, is tangent to the sphere. Rendered in POV-ray based on a different rendering of the same model from D. Eppstein (2005), Quasiconvex programming, Combinatorial and Computational Geometry, Goodman, Pach, and Welzl, eds., MSRI Publications 52, 2005, pp. 287-331, arXiv:cs.CG/0412046.
மூலம் சொந்த முயற்சி
ஆசிரியர் David Eppstein

அனுமதி

இந்த ஆக்கத்தின் காப்புரிமையாளரான நான் இதனைப் பின்வரும் உரிமத்தின் கீழ் வெளியிடுகின்றேன்:
w:ta:கிரியேட்டிவ் காமன்ஸ்
பண்புக்கூறுகள் அதே மாதிரி பகிர்
இந்த கோப்பு Creative Commons Attribution-Share Alike 3.0 Unported உரிமத்தின் கீழ் உள்ளது.
நீங்கள் சுதந்திரமாக:
  • பகிர்ந்து கொள்ள – வேலையை நகலெடுக்க, விநியோகிக்க மற்றும் அனுப்ப
  • மீண்டும் கலக்க – வேலைக்கு பழகிக்கொள்ள.
கீழ்க்காணும் விதிகளுக்கு ஏற்ப,
  • பண்புக்கூறுகள் – நீங்கள் பொருத்தமான உரிமையை வழங்க வேண்டும், உரிமத்திற்கான இணைப்பை வழங்க வேண்டும் மற்றும் மாற்றங்கள் செய்யப்பட்டிருந்தால் குறிப்பிட வேண்டும். நீங்கள் ஏற்புடைய எந்த முறையிலும் அவ்வாறு செய்யலாம், ஆனால் எந்த வகையிலும் உரிமதாரர் உங்களை அல்லது உங்கள் பயன்பாட்டிற்கு ஒப்புதல் அளிக்கும் படி பரிந்துரைக்க கூடாது.
  • அதே மாதிரி பகிர் – நீங்கள் ரீமிக்ஸ் செய்தாலோ, உருமாற்றம் செய்தாலோ அல்லது பொருளை உருவாக்கினாலோ, உங்கள் பங்களிப்புகளை அல்லது இணக்கமான உரிமம் கீழ் அசலாக விநியோகிக்க வேண்டும்.

POV-ray source code

// Edge-tangent polytope and the sphere of edge tangencies
// David Eppstein, UC Irvine, 21 May 2001, modified 10 April 2011

global_settings {
   assumed_gamma 2.2
   ambient_light <3,3,3>
}

light_source { <-10, 35, -15> color <4,4,4> }

// light_source { <5, -10, -15> color <1.5,1.5,1.5> }

// perp: <5,1,-6> <1,1,1> <7,-11,4>
// perp: <5,2,-2> <0,1,1> <4,-5,5>

#declare p=<1,1,1>/sqrt(3);
#declare q=<7,-11,4>/sqrt(186);
camera {
   location  <5,1,-6>
   look_at   <0.5, 0, 0>
   up -q*0.65
   right p*0.65
   translate <-0.1,0,-0.5>
   rotate <0,-5,0>
}

sphere { <0.0, 0.0, 0.0>, 2
	texture {
		finish {
			specular 1
			roughness 0.002
			ambient 0.1
			diffuse 0.05
			reflection 1
			phong 0.3
			phong_size 60
		}
		pigment { color rgbf<0.2, 0.2, 1.5, 0.7> }
	}
}

#declare P_Surf =
texture {
    finish {
       ambient 0.2
       diffuse 0.2
    }
    pigment { color red 1 green 1 blue 1 }
}

polygon {
    4,
    <0,2,-2>,<0,2,2>,<2,0,1>,<2,0,-1>
    texture { P_Surf }
}

polygon {
    4,
    <0,2,-2>,<0,2,2>,<-2,0,1>,<-2,0,-1>
    texture { P_Surf }
}

polygon {
    4,
    <0,-2,-2>,<0,-2,2>,<2,0,1>,<2,0,-1>
    texture { P_Surf }
}

polygon {
    4,
    <0,-2,-2>,<0,-2,2>,<-2,0,1>,<-2,0,-1>
    texture { P_Surf }
}

polygon {
	3,
	<0,2,2>,<2,0,1>,<0,-2,2>
	texture { P_Surf }
}

polygon {
	3,
	<0,2,-2>,<2,0,-1>,<0,-2,-2>
	texture { P_Surf }
}

polygon {
	3,
	<0,2,2>,<-2,0,1>,<0,-2,2>
	texture { P_Surf }
}

polygon {
	3,
	<0,2,-2>,<-2,0,-1>,<0,-2,-2>
	texture { P_Surf }
}

#declare P_Ring =
texture {
    finish {
       ambient 0.3
       diffuse 0.3
    }
    pigment { color red 1 green 0 blue 0 }
}

torus {
	2/sqrt(2), 0.013
	texture { P_Ring }
	rotate <-45,0,0>
	translate <0,1,-1>
}

torus {
	2/sqrt(2), 0.013
	texture { P_Ring }
	rotate <45,0,0>
	translate <0,1,1>
}

torus {
	2/sqrt(2), 0.013
	texture { P_Ring }
	rotate <-45,0,0>
	translate <0,1,-1>
	rotate <180,0,0>
}

torus {
	2/sqrt(2), 0.013
	texture { P_Ring }
	rotate <45,0,0>
	translate <0,1,1>
	rotate <180,0,0>
}

torus {
	2*sqrt(1/5), 0.013
	texture { P_Ring }
	rotate <90,-asin(2/sqrt(5))*180/pi,0>
	translate <8/5,0,-4/5>
}

torus {
	2*sqrt(1/5), 0.013
	texture { P_Ring }
	rotate <90,asin(2/sqrt(5))*180/pi,0>
	translate <8/5,0,4/5>
}

torus {
	2*sqrt(1/5), 0.013
	texture { P_Ring }
	rotate <90,-asin(2/sqrt(5))*180/pi,0>
	translate <8/5,0,-4/5>
	rotate <180,0,0>
}

torus {
	2*sqrt(1/5), 0.013
	texture { P_Ring }
	rotate <90,asin(2/sqrt(5))*180/pi,0>
	translate <8/5,0,4/5>
	rotate <180,0,0>
}

Captions

Add a one-line explanation of what this file represents

some value

author name string ஆங்கிலம்: David Eppstein
Wikimedia username ஆங்கிலம்: David Eppstein

copyright status ஆங்கிலம்

copyrighted ஆங்கிலம்

source of file ஆங்கிலம்

original creation by uploader ஆங்கிலம்

கோப்பின் வரலாறு

குறித்த நேரத்தில் இருந்த படிமத்தைப் பார்க்க அந்நேரத்தின் மீது சொடுக்கவும்.

நாள்/நேரம்நகம் அளவு சிறுபடம்அளவுகள்பயனர்கருத்து
தற்போதைய20:49, 10 ஏப்பிரல் 201120:49, 10 ஏப்பிரல் 2011 இலிருந்த பதிப்புக்கான சிறு தோற்றம்1,024 × 1,024 (115 KB)David Eppstein{{Information |Description ={{en|1=The midsphere of a polyhedron. The red circles indicate the points at which a cone, with its apex at a vertex, is tangent to the sphere. Rendered in POV-ray based on a different rendering of the same

பின்வரும் பக்க இணைப்புகள் இப் படிமத்துக்கு இணைக்கபட்டுள்ளது(ளன):

கோப்பின் முழுமையான பயன்பாடு

கீழ்கண்ட மற்ற விக்கிகள் இந்த கோப்பை பயன்படுத்துகின்றன:

"https://ta.wikipedia.org/wiki/படிமம்:Midsphere.png" இலிருந்து மீள்விக்கப்பட்டது