我正在使用GNUplot将我的数据绘制成重心等边三角形。问题是,我必须从三角形的中心到三角形的三条边绘制三条线,使得线应该垂直于每一边,并将三角形分成三个相等的部分。
我在GNUplot中使用以下命令绘制重心等边三角形。
unset border
unset xtics
unset ytics
set arrow 1 from 0,0 to .5,sqrt(3)/2 nohead front lt -1 lw 1
set arrow 2 from 0,0 to 1,0 nohead front lt -1 lw 1
set arrow 3 from 1,0 to .5,sqrt(3)/2 nohead front lt -1 lw 1
set label 1 "1" at 0.5,sqrt(3)/2+.05
set label 2 "2" at 1+.05,0
set label 3 "3" at -.05,0
set size square
plot 'data.file'
我无法从三角形的中心到三角形的三个边绘制三条垂直线。请帮帮我。
谢谢!
关心, 斯瓦特
答案 0 :(得分:1)
Gnuplot没有为您提供标尺和指南针构造的工具,因此您必须找到手动绘制线条的点。
由于等边三角形的内切圆的半径是边长的sqrt(3)/6
倍,因此三角形的中心位于.5,sqrt(3)/6
。
通过在脚本中添加以下行,您可以绘制想要的行:
set arrow 4 from .5,sqrt(3)/6 to .25,sqrt(3)/4 nohead front lt -1 lw 1
set arrow 5 from .5,sqrt(3)/6 to .75,sqrt(3)/4 nohead front lt -1 lw 1
set arrow 6 from .5,sqrt(3)/6 to .5,0 nohead front lt -1 lw 1