将3D图的轴放置在图形内

时间:2019-02-18 09:43:03

标签: python matplotlib plot 3d complex-numbers

如何将3D绘图的轴放置在图形本身内部而不是图形边缘?

我需要这个:

drawing_with_axes_inside


默认情况下,绘图框边缘上的当前轴不是我的当前轴:

current_graph_with_axes_on_edges

代码:

alert

1 个答案:

答案 0 :(得分:3)

就目前而言,尚无支持的3D绘图实现(@ThomasKühn指出了规范的方法和问题。一种幼稚的方法和笨拙的方法是将绘图线作为轴,但是这样做会他们没有tick。

编辑:可以为轴限制添加文本

/tmp % gcc ex2.c -E -D b+=2
<command-line>: warning: missing whitespace after the macro name
...
# 2 "ex2.c" 2

int main()
{

    printf("%d\n", 2 + 2 | ~ 2 + 2);

    return 0;
}

enter image description here