ไฟล์:Rhombic dodecahedron.jpg
จาก testwiki
ไปยังการนำทาง
ไปยังการค้นหา
Rhombic_dodecahedron.jpg (240 × 256 พิกเซล, ขนาดไฟล์: 8 กิโลไบต์, ชนิดไมม์: image/jpeg)
ไฟล์นี้มาจาก วิกิมีเดียคอมมอนส์ และอาจมีใช้ในโครงการอื่น คำอธิบายในหน้าคำอธิบายไฟล์แสดงไว้ด้านล่างนี้
ความย่อ
3D-render of partially-transparent Rhombic dodecahedron (dual of cuboctahedron Archimedean solid).
From en:Image:Rhombic dodecahedron.jpg
ภาพแผนภาพนี้ ควรจะถูกสร้างใหม่เป็นกราฟิกส์เวกเตอร์ ซึ่งมีข้อดีอีกหลายประการ ดูเพิ่มเติมที่คอมมอนส์:สื่อต้องการเก็บกวาดสำหรับสารสนเทศเพิ่มเติม หากภาพนี้มีในรูปแบบกราฟิกส์เวกเตอร์อยู่แล้ว กรุณาอัปโหลดและแทนที่แม่แบบนี้ด้วย
{{vector version available|ชื่อภาพใหม่}}
แนะนำเป็นอย่างยิ่งให้ตั้งชื่อไฟล์เวกเตอร์ใหม่นั้นในรูปแบบ "Rhombic dodecahedron.svg" แล้วใส่แม่แบบ Vector version available (หรือ Vva) ซึ่งไม่ต้องใช้พารามิเตอร์ ชื่อภาพใหม่ |
This diagram image was uploaded in the JPEG format even though it consists of non-photographic data. This information could be stored more efficiently or accurately in the PNG or SVG format. If possible, please upload a PNG or SVG version of this image without compression artifacts, derived from a non-JPEG source (or with existing artifacts removed). After doing so, please tag the JPEG version with {{Superseded|NewImage.ext}} and remove this tag. This tag should not be applied to photographs or scans. If this image is a diagram or other image suitable for vectorisation, please tag this image with {{Convert to SVG}} instead of {{BadJPEG}}. If not suitable for vectorisation, use {{Convert to PNG}}. For more information, see {{BadJPEG}}. |
การอนุญาตใช้สิทธิ
| อนุญาตให้คัดลอก แจกจ่ายและ/หรือดัดแปรเอกสารนี้ภายใต้เงื่อนไขของสัญญาอนุญาตเอกสารเสรีของกนู รุ่น 1.2 หรือรุ่นใด ๆ นับจากนี้ที่ออกโดยมูลนิธิซอฟต์แวร์เสรี โดยไม่มีส่วนใดห้ามแก้ไข ไม่มีข้อความปกหน้าและปกหลัง สำเนาของสัญญาอนุญาตรวมอยู่ในส่วนชื่อ สัญญาอนุญาตเอกสารเสรีของกนูhttp://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue |
| ไฟล์นี้อยู่ภายใต้สัญญาอนุญาต ครีเอทีฟคอมมอนส์ แบบแสดงที่มา-อนุญาตแบบเดียวกัน 3.0 ต้นฉบับ | ||
| ||
| ป้ายแสดงสถานะลิขสิทธิ์นี้ถูกเพิ่มเพื่อให้เป็นไปตามการเปลี่ยนแปลงสัญญาอนุญาตของมูลนิธิวิกิมีเดีย จาก GFDL ไปยัง GFDL ควบคู่กับ CC-BY-SA 3.0http://creativecommons.org/licenses/by-sa/3.0/CC BY-SA 3.0Creative Commons Attribution-Share Alike 3.0truetrue |
Povray code
The file was produced via the command "povray rhombic_dodecahedron.ini" on a Mac OS X machine with the fink installation of POV-Ray. The following three files are used. (GFDL applies to all)
File "rhombic_dodecahedron.povi"
#declare A=sqrt(2);
#declare R=0.025;
#declare rhombdod =
intersection {
box { < -2, -2, -2>, <2,2,2> }
plane { < 1, 1, 0>, A }
plane { < 1,-1, 0>, A }
plane { <-1, 1, 0>, A }
plane { <-1,-1, 0>, A }
plane { < 1, 0, 1>, A }
plane { < 1, 0,-1>, A }
plane { <-1, 0, 1>, A }
plane { <-1, 0,-1>, A }
plane { < 0, 1, 1>, A }
plane { < 0, 1,-1>, A }
plane { < 0,-1, 1>, A }
plane { < 0,-1,-1>, A }
}
#declare tripod =
union{
cylinder { <2,0,0>, <1,1,1>, R }
cylinder { <0,2,0>, <1,1,1>, R }
cylinder { <0,0,2>, <1,1,1>, R }
sphere { <1,1,1>, R }
}
#declare rhombdodedges =
union {
object { tripod }
object { tripod rotate 90*z }
object { tripod rotate 180*z }
object { tripod rotate 270*z }
object { tripod rotate 180*x }
object { tripod rotate 180*x rotate 90*z }
object { tripod rotate 180*x rotate 180*z }
object { tripod rotate 180*x rotate 270*z }
sphere { < 2, 0, 0 >, R }
sphere { <-2, 0, 0 >, R }
sphere { < 0, 2, 0 >, R }
sphere { < 0,-2, 0 >, R }
sphere { < 0, 0, 2 >, R }
sphere { < 0, 0,-2 >, R }
}
File "rhombic_dodecahedron.pov"
#include "colors.inc"
#include "rhombic_dodecahedron.povi"
global_settings{ ambient_light White }
background { color White }
#declare LX = 20;
#declare LZ = 50;
light_source { <LX,-LX,LZ> color White}
light_source { <-LX,LX,LZ> color White}
light_source { <LX,LX,LZ> color White}
light_source { <-LX,-LX,LZ> color White}
object { rhombdod
texture {
pigment { colour rgbt <1,1,0.4,0.3> }
finish { ambient 0.1 diffuse 0.9 phong 1 }
}
}
object { rhombdodedges
texture { pigment { colour Black } }
}
camera {
location 15*y
direction -y
right 0.3*x
up 0.3*z
rotate 10*x
rotate 30*z
}
File "rhombic_dodecahedron.ini"
Input_File_Name="rhombic_dodecahedron.pov" Output_File_Type=N Library_Path="/sw/share/povray-3.5/include/" +v +h256 +w256 Antialias=on
คำบรรยายโดยย่อ
เพิ่มคำอธิบายบรรทัดเดียวว่าไฟล์นี้แสดงถึงอะไร
รายการที่แสดงอยู่ในไฟล์นี้
ประกอบด้วย
ประวัติไฟล์
คลิกวันที่/เวลาเพื่อดูไฟล์ที่ปรากฏในขณะนั้น
| วันที่/เวลา | รูปย่อ | ขนาด | ผู้ใช้ | ความเห็น | |
|---|---|---|---|---|---|
| ปัจจุบัน | 10:48, 21 เมษายน 2556 | 240 × 256 (8 กิโลไบต์) | wikimediacommons>AnonMoos | losslessly cropping |
การใช้ไฟล์
1 หน้าต่อไปนี้ใช้ไฟล์นี้:

