Maple 中带有隐式图的颜色区域

Color region with implicit plots in Maple

使用隐式绘图包如何为 2*x-y=4 和 2*x+y=4 线下的区域着色。

与(地块,隐式地块): 隐式图([x=5/2,2*x-y=4,2*x+y=4,3/2*x-2*y=7/4],x=1.5..2.6,y=0.. 1.5);

with(plots, implicitplot):

plots:-display(
  implicitplot([2*x-y>4,2*x+y<4],
               x=1.5..2.6,y=0..1.5,filledregions),
  implicitplot([x=5/2,2*x-y=4,2*x+y=4,3/2*x-2*y=7/4],
               x=1.5..2.6,y=0..1.5)

);