網(wǎng)站首頁 編程語言 正文
直接進(jìn)入主題
立方體每列顏色不同:
# Import libraries import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D import numpy as np ?? ?? # Create axis axes = [5,5,5] ?? # Create Data data = np.ones(axes, dtype=np.bool) ?? # Controll Tranperency alpha = 0.9 ?? # Control colour colors = np.empty(axes + [4], dtype=np.float32) ?? colors[0] = [1, 0, 0, alpha] ?# red colors[1] = [0, 1, 0, alpha] ?# green colors[2] = [0, 0, 1, alpha] ?# blue colors[3] = [1, 1, 0, alpha] ?# yellow colors[4] = [1, 1, 1, alpha] ?# grey ?? # Plot figure fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ?? # Voxels is used to customizations of # the sizes, positions and colors. ax.voxels(data, facecolors=colors, edgecolors='grey')
立方體各面顏色不同:
import matplotlib.pyplot as plt import numpy as np ? ? def generate_rubik_cube(nx, ny, nz): ? ? """ ? ? 根據(jù)輸入生成指定尺寸的魔方 ? ? :param nx: ? ? :param ny: ? ? :param nz: ? ? :return: ? ? """ ? ? # 準(zhǔn)備一些坐標(biāo) ? ? n_voxels = np.ones((nx + 2, ny + 2, nz + 2), dtype=bool) ? ? ? # 生成間隙 ? ? size = np.array(n_voxels.shape) * 2 ? ? filled_2 = np.zeros(size - 1, dtype=n_voxels.dtype) ? ? filled_2[::2, ::2, ::2] = n_voxels ? ? ? # 縮小間隙 ? ? # 構(gòu)建voxels頂點(diǎn)控制網(wǎng)格 ? ? # x, y, z均為6x6x8的矩陣,為voxels的網(wǎng)格,3x3x4個(gè)小方塊,共有6x6x8個(gè)頂點(diǎn)。 ? ? # 這里//2是精髓,把索引范圍從[0 1 2 3 4 5]轉(zhuǎn)換為[0 0 1 1 2 2],這樣就可以單獨(dú)設(shè)立每個(gè)方塊的頂點(diǎn)范圍 ? ? x, y, z = np.indices(np.array(filled_2.shape) + 1).astype(float) // 2 ?# 3x6x6x8,其中x,y,z均為6x6x8 ? ? ? x[1::2, :, :] += 0.95 ? ? y[:, 1::2, :] += 0.95 ? ? z[:, :, 1::2] += 0.95 ? ? ? # 修改最外面的面 ? ? x[0, :, :] += 0.94 ? ? y[:, 0, :] += 0.94 ? ? z[:, :, 0] += 0.94 ? ? ? x[-1, :, :] -= 0.94 ? ? y[:, -1, :] -= 0.94 ? ? z[:, :, -1] -= 0.94 ? ? ? # 去除邊角料 ? ? filled_2[0, 0, :] = 0 ? ? filled_2[0, -1, :] = 0 ? ? filled_2[-1, 0, :] = 0 ? ? filled_2[-1, -1, :] = 0 ? ? ? filled_2[:, 0, 0] = 0 ? ? filled_2[:, 0, -1] = 0 ? ? filled_2[:, -1, 0] = 0 ? ? filled_2[:, -1, -1] = 0 ? ? ? filled_2[0, :, 0] = 0 ? ? filled_2[0, :, -1] = 0 ? ? filled_2[-1, :, 0] = 0 ? ? filled_2[-1, :, -1] = 0 ? ? ? # 給魔方六個(gè)面賦予不同的顏色 ? ? colors = np.array(['#ffd400', "#fffffb", "#f47920", "#d71345", "#145b7d", "#45b97c"]) ? ? facecolors = np.full(filled_2.shape, '#77787b') ?# 設(shè)一個(gè)灰色的基調(diào) ? ? # facecolors = np.zeros(filled_2.shape, dtype='U7') ? ? facecolors[:, :, -1] = colors[0] ? ?# 上黃 ? ? facecolors[:, :, 0] = colors[1] ? ? # 下白 ? ? facecolors[:, 0, :] = colors[2] ? ? # 左橙 ? ? facecolors[:, -1, :] = colors[3] ? ?# 右紅 ? ? facecolors[0, :, :] = colors[4] ? ? # 前藍(lán) ? ? facecolors[-1, :, :] = colors[5] ? ?# 后綠 ? ? ? ax = plt.figure().add_subplot(projection='3d') ? ? ax.voxels(x, y, z, filled_2, facecolors=facecolors) ? ? plt.show() ? ? if __name__ == '__main__': ? ? generate_rubik_cube(4, 4, 4)
彩色透視立方體:
from __future__ import division import numpy as np from mpl_toolkits.mplot3d import Axes3D from mpl_toolkits.mplot3d.art3d import Poly3DCollection from matplotlib.pyplot import figure, show def quad(plane='xy', origin=None, width=1, height=1, depth=0): u, v = (0, 0) if origin is None else origin plane = plane.lower() if plane == 'xy': vertices = ((u, v, depth), (u + width, v, depth), (u + width, v + height, depth), (u, v + height, depth)) elif plane == 'xz': vertices = ((u, depth, v), (u + width, depth, v), (u + width, depth, v + height), (u, depth, v + height)) elif plane == 'yz': vertices = ((depth, u, v), (depth, u + width, v), (depth, u + width, v + height), (depth, u, v + height)) else: raise ValueError('"{0}" is not a supported plane!'.format(plane)) return np.array(vertices) def grid(plane='xy', origin=None, width=1, height=1, depth=0, width_segments=1, height_segments=1): u, v = (0, 0) if origin is None else origin w_x, h_y = width / width_segments, height / height_segments quads = [] for i in range(width_segments): for j in range(height_segments): quads.append( quad(plane, (i * w_x + u, j * h_y + v), w_x, h_y, depth)) return np.array(quads) def cube(plane=None, origin=None, width=1, height=1, depth=1, width_segments=1, height_segments=1, depth_segments=1): plane = (('+x', '-x', '+y', '-y', '+z', '-z') if plane is None else [p.lower() for p in plane]) u, v, w = (0, 0, 0) if origin is None else origin w_s, h_s, d_s = width_segments, height_segments, depth_segments grids = [] if '-z' in plane: grids.extend(grid('xy', (u, w), width, depth, v, w_s, d_s)) if '+z' in plane: grids.extend(grid('xy', (u, w), width, depth, v + height, w_s, d_s)) if '-y' in plane: grids.extend(grid('xz', (u, v), width, height, w, w_s, h_s)) if '+y' in plane: grids.extend(grid('xz', (u, v), width, height, w + depth, w_s, h_s)) if '-x' in plane: grids.extend(grid('yz', (w, v), depth, height, u, d_s, h_s)) if '+x' in plane: grids.extend(grid('yz', (w, v), depth, height, u + width, d_s, h_s)) return np.array(grids) canvas = figure() axes = Axes3D(canvas) quads = cube(width_segments=4, height_segments=4, depth_segments=4) # You can replace the following line by whatever suits you. Here, we compute # each quad colour by averaging its vertices positions. RGB = np.average(quads, axis=-2) # Setting +xz and -xz plane faces to black. RGB[RGB[..., 1] == 0] = 0 RGB[RGB[..., 1] == 1] = 0 # Adding an alpha value to the colour array. RGBA = np.hstack((RGB, np.full((RGB.shape[0], 1), .85))) collection = Poly3DCollection(quads) collection.set_color(RGBA) axes.add_collection3d(collection) show()
原文鏈接:https://blog.csdn.net/weixin_44853840/article/details/123794474
相關(guān)推薦
- 2022-03-17 docker-compose安裝yml文件配置方式_docker
- 2023-10-11 在枚舉類中“優(yōu)雅地”使用枚舉處理器
- 2022-10-18 C++函數(shù)模板與重載解析超詳細(xì)講解_C 語言
- 2022-07-23 SQL?Server刪除表中的重復(fù)數(shù)據(jù)_MsSql
- 2022-03-18 C語言實(shí)現(xiàn)一個(gè)閃爍的圣誕樹_C 語言
- 2022-09-06 C語言模擬實(shí)現(xiàn)strstr函數(shù)的示例代碼_C 語言
- 2022-08-24 k8s部署redis哨兵的實(shí)現(xiàn)_Redis
- 2022-10-03 numpy中nan_to_num的具體使用_python
- 最近更新
-
- window11 系統(tǒng)安裝 yarn
- 超詳細(xì)win安裝深度學(xué)習(xí)環(huán)境2025年最新版(
- Linux 中運(yùn)行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎(chǔ)操作-- 運(yùn)算符,流程控制 Flo
- 1. Int 和Integer 的區(qū)別,Jav
- spring @retryable不生效的一種
- Spring Security之認(rèn)證信息的處理
- Spring Security之認(rèn)證過濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權(quán)
- redisson分布式鎖中waittime的設(shè)
- maven:解決release錯(cuò)誤:Artif
- restTemplate使用總結(jié)
- Spring Security之安全異常處理
- MybatisPlus優(yōu)雅實(shí)現(xiàn)加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務(wù)發(fā)現(xiàn)-Nac
- Spring Security之基于HttpR
- Redis 底層數(shù)據(jù)結(jié)構(gòu)-簡單動(dòng)態(tài)字符串(SD
- arthas操作spring被代理目標(biāo)對象命令
- Spring中的單例模式應(yīng)用詳解
- 聊聊消息隊(duì)列,發(fā)送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠(yuǎn)程分支