3D Workspace
Home
Assets
Affiliate Program
Creator Program
Sign up/Log in
?
Upgrade
DCC Bridge
Anonymous1781576552
06-16 02:38
Model Name
schematic board 3d model
Tags
architecture
concept art
modern
Prompt
import bpy import math # Clear default cube bpy.ops.object.select_all(action='SELECT') bpy.ops.object.delete() # Scene size matching your drawing ratio WIDTH = 9.6 HEIGHT = 14.83 THICK = 0.2 LINE_OFFSET = 0.01 # Main outer board mesh def make_plane(x, y, w, h, thick=THICK): bpy.ops.mesh.primitive_cube_add(size=1, location=(x, -thick/2, y)) obj = bpy.context.active_object obj.scale = (w/2, thick/2, h/2) return obj # Main big top+bottom outer panel main_board = make_plane(WIDTH/2, HEIGHT/2, WIDTH, HEIGHT) # Horizontal split line (separate top / bottom section) split_y = 9.0 divider_h = make_plane(WIDTH/2, split_y, WIDTH, LINE_OFFSET) # Two short vertical lines at top left_top_line = make_plane(2.3, 2.0, LINE_OFFSET, 2.4) right_top_line = make_plane(7.3, 2.0, LINE_OFFSET, 2.4) # Bottom 3 vertical dividers div1_x = 3.2 div2_x = 6.4 divider_v1 = make_plane(div1_x, (split_y + HEIGHT)/2, LINE_OFFSET, HEIGHT - split_y) divider_v2 = make_plane(div2_x, (split_y + HEIGHT)/2
Detailed Info
Related Models
Enter invite code
Enter invite code to get credits!