跳至內容

File:Neusis-heptagon.png

頁面內容不支援其他語言。
這個檔案來自維基共享資源
維基百科,自由的百科全書

Neusis-heptagon.png(542 × 563 像素,檔案大小:15 KB,MIME 類型:image/png


本圖片是以PNG、GIF或JPEG格式上傳。然而,其中包含的資料或訊息,應該重新建立成可縮放向量圖形SVG)檔案,以更有效率或更準確的方式儲存。如有可能,請上傳本圖片的SVG格式版本。在上傳之後,請修改維基各姊妹計畫中所有使用舊版圖片的條目(列在圖像連結章節中),替換為新版圖片,並在舊圖片的描述頁中加入{{Vector version available|新圖片名稱.svg}}模板,同時移除本模板。

Geometric details: OPQR is a unit square. The arc centred on O through Q is drawn, as is the perpendicular bisector of OP. The en:Neusis construction involves finding unit interval AB through P with A on the perpendicular bisector and B on the arc. Angle PAO is the interior angle of a heptagon. The remainder of the construction can be carried out with ruler and compass. (Two of the vertices lie on the lines OR and PQ.)

摘要

描述 Neusis construction of a regular heptagon
日期
來源 自己的作品
作者 User:AndrewKepert
授權許可
(重用此檔案)
GFDL and CC. GPL source included

The en:MetaPost source below is a bit of a cheat.

授權條款

我,本作品的著作權持有者,決定用以下授權條款發佈本作品:
GNU head 已授權您依據自由軟體基金會發行的無固定段落、封面文字和封底文字GNU自由文件授權條款1.2版或任意後續版本,對本檔進行複製、傳播和/或修改。該協議的副本列在GNU自由文件授權條款中。
w:zh:共享創意
姓名標示 相同方式分享
此檔案採用共享創意 姓名標示-相同方式分享 3.0 未在地化版本授權條款。
您可以自由:
  • 分享 – 複製、發佈和傳播本作品
  • 重新修改 – 創作演繹作品
惟需遵照下列條件:
  • 姓名標示 – 您必須指名出正確的製作者,和提供授權條款的連結,以及表示是否有對內容上做出變更。您可以用任何合理的方式來行動,但不得以任何方式表明授權條款是對您許可或是由您所使用。
  • 相同方式分享 – 如果您利用本素材進行再混合、轉換或創作,您必須基於如同原先的相同或兼容的條款,來分布您的貢獻成品。
已新增授權條款標題至此檔案,作為GFDL授權更新的一部份。
w:zh:共享創意
姓名標示 相同方式分享
此檔案採用創用CC 姓名標示-相同方式分享 2.5 通用版2.0 通用版以及1.0 通用版授權條款。
您可以自由:
  • 分享 – 複製、發佈和傳播本作品
  • 重新修改 – 創作演繹作品
惟需遵照下列條件:
  • 姓名標示 – 您必須指名出正確的製作者,和提供授權條款的連結,以及表示是否有對內容上做出變更。您可以用任何合理的方式來行動,但不得以任何方式表明授權條款是對您許可或是由您所使用。
  • 相同方式分享 – 如果您利用本素材進行再混合、轉換或創作,您必須基於如同原先的相同或兼容的條款,來分布您的貢獻成品。
您可以選擇您需要的授權條款。

Metapost source

The Metapost source for this file. All done via command line on MacOSX:

  • Metapost (mpost command from teTeX)
  • \convertMPtoPDF TeX command from supp-pdf.tex, processed via pdfTeX
  • ghostscript to a png at 1200x1200.

I hereby make this source available under the GPL version 2 or later.

u=2cm;
path unitcircle;   unitcircle=fullcircle scaled 2u;
thick=1mm;
thin=0.25mm;
transform heptT;
def drawruler(expr p,q) =
    path ruler[];
    ruler0:=unitsquare xscaled abs(p-q) yscaled .1u rotated angle(q-p) shifted p;
    ruler1:=unitsquare yscaled 0.5 shifted 0.25up
        xscaled abs(p-q) yscaled .1u rotated angle(q-p) shifted p;
    fill ruler0 withcolor (1,1,.5);
    fill ruler1 withcolor (.9,.9,.3);
    draw ruler0 withpen pencircle scaled 0.25;
    enddef;
beginfig(77)
    pickup  pencircle scaled thin;
    z0=(0,0);      z0d=(0,.4u);
    z1=(-0.5u,0);  z1l=(.5u-u*sqrt(2),0);
    z2=(0.5u,0);
    z3=(.5u,-u);   z3u=(.5u,-u*sqrt(2));
    z4=(-.5u,-u);
    z5=(0,-u);
    z6=(0,whatever)=z1+whatever*dir(180/7);
    z7=z6-u*dir(180/7);
    drawruler(z6,z7);
    drawruler(z3,z4);
    for i = 0 upto 7:
        z[i]vtx=dir(360i/7);
    endfor;
    xxpart heptT= yypart heptT;
    xypart heptT=-yxpart heptT;
    for i = 6,7: z[i] = z[i]vtx transformed heptT; endfor
    draw (for i = 0 upto 6: z[i]vtx -- endfor cycle) transformed heptT dashed evenly withcolor blue;
    draw z1--z2--z3--z4--cycle;
    draw z1l--z1;
    draw z0d--z5;
    draw z2--z4 dashed evenly;
    draw z6--z7;
    label.urt("O",z2);
    label.ulft("A",z6);
    label.ulft("P",z1);
    label.llft("Q",z4);
    label.rt("R",z3);
    label.lft("B",z7);
    draw subpath (4,5) of unitcircle scaled (sqrt(2)) shifted z2;
    for i = 1,2,6,7,3,4:
        if known(x[i]):
            drawdot z[i] withpen pencircle scaled thick;
        fi
    endfor
endfig;    
bye

See also

說明

添加單行說明來描述出檔案所代表的內容

在此檔案描寫的項目

描繪內容

著作權狀態 繁體中文 (已轉換拼寫)

有著作權 繁體中文 (已轉換拼寫)

共享創意署名-相同方式共享3.0Unported Chinese (Hong Kong) (已轉換拼寫)

共享創意署名-相同方式共享2.5通用版 Chinese (Hong Kong) (已轉換拼寫)

GNU自由文檔許可證1.2或更高版本 繁體中文 (已轉換拼寫)

共享創意署名-相同方式共享2.0通用版 Chinese (Hong Kong) (已轉換拼寫)

檔案來源 Chinese (Taiwan) (已轉換拼寫)

上傳者的原創作品 繁體中文 (已轉換拼寫)

檔案歷史

點選日期/時間以檢視該時間的檔案版本。

日期/時間縮⁠圖尺寸用戶備⁠註
目前2006年5月19日 (五) 08:22於 2006年5月19日 (五) 08:22 版本的縮圖542 × 563(15 KB)AndrewKepert~commonswiki{{Information| |Description=Neusis construction of a regular heptagon |Source=own work |Date=19 May 2006 |Author=User:AndrewKepert |Permission=GFDL and CC. GPL source included }}

下列頁面有用到此檔案:

全域檔案使用狀況

以下其他 wiki 使用了這個檔案: