Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
geatpy-dev committed Sep 20, 2024
2 parents 66efd5d + 86db7e7 commit 89169cf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion geatpy/visualization/PointScatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ def draw(self):
elif self.Dimension == 3:
if self.fig is None and self.ax is None:
self.fig = plt.figure() # 生成一块画布
# self.ax = Axes3D(self.fig) # 创建绘图区域
self.ax = self.fig.add_subplot(111, projection='3d') # 创建绘图区域
self.ax.view_init(elev=30, azim=45) # 旋转
for idx, data in enumerate(self.data_set):
Expand Down

0 comments on commit 89169cf

Please sign in to comment.