相似三角形
2026-08-16 11:35
绘制一对相似三角形,通过坐标计算和向量缩放,展示相似三角形的性质。
GeoGebra 画板及绘图内容加载中,请稍等……
<construction>
<!-- 第一个三角形 ABC -->
<element type="point" label="A"><coords x="0.0" y="0.0" z="1.0"/></element>
<element type="point" label="B"><coords x="4.0" y="0.0" z="1.0"/></element>
<element type="point" label="C"><coords x="1.0" y="3.0" z="1.0"/></element>
<command name="Polygon"><input a0="A" a1="B" a2="C"/><output a0="tri1"/></command>
<element type="polygon" label="tri1">
<show object="true" label="false"/>
<objColor r="0" g="150" b="0" alpha="0.2"/>
</element>
<!-- 第二个相似三角形 DEF (相似比为2) -->
<element type="point" label="D"><coords x="6.0" y="0.0" z="1.0"/></element>
<element type="point" label="E"><coords x="14.0" y="0.0" z="1.0"/></element>
<element type="point" label="F"><coords x="8.0" y="6.0" z="1.0"/></element>
<command name="Polygon"><input a0="D" a1="E" a2="F"/><output a0="tri2"/></command>
<element type="polygon" label="tri2">
<show object="true" label="false"/>
<objColor r="0" g="0" b="200" alpha="0.2"/>
</element>
</construction>