Added decals, artwork, furniture, and tasks.

master
Nathan Salapat 2022-01-08 18:32:03 -06:00
parent 362cacc44a
commit a1c79a2531
118 changed files with 3494 additions and 1580 deletions

View File

@ -1,2 +1,3 @@
All images starting with the letter a are from https://www.nga.gov/ and are under the public domain.
All images starting with the letter b are licensed CC by SA Nathan Salapat
All images starting with the letter c are from CDC and are public domain. (Potentially only for USA Tax Payers, IDK IANAL)

View File

@ -38,3 +38,8 @@ artwork.register_landscape('b10', 'Frog')
artwork.register_portrait('b1', 'Nathan')
artwork.register_portrait('b8', 'Woodpecker')
artwork.register_landscape('c01', 'Virus')
artwork.register_landscape('c02', 'Virus')
artwork.register_landscape('c03', 'Virus in Bloodstream')

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -81,7 +81,7 @@ for i in ipairs(colors) do
minetest.register_node('color:'..name, {
description = desc,
tiles = {{name='color_speckled.png', align_style='world', scale=4}},
paramtype2 = 'colorfacedir',
paramtype2 = 'color',
palette = 'color_'..name..'.png',
color = hex,
groups = {breakable=1, stainable=1},
@ -96,7 +96,7 @@ for i in ipairs(colors) do
minetest.register_node('color:'..name..'_blocks', {
description = desc..' Blocks',
tiles = {{name='color_blocks.png', align_style='world', scale=4}},
paramtype2 = 'colorfacedir',
paramtype2 = 'color',
palette = 'color_'..name..'.png',
color = hex,
groups = {breakable=1, stainable=1},
@ -111,7 +111,7 @@ for i in ipairs(colors) do
minetest.register_node('color:'..name..'_bricks', {
description = desc..' Bricks',
tiles = {{name='color_bricks.png', align_style='world', scale=4}},
paramtype2 = 'colorfacedir',
paramtype2 = 'color',
palette = 'color_'..name..'.png',
color = hex,
groups = {breakable=1, stainable=1},
@ -126,7 +126,7 @@ for i in ipairs(colors) do
minetest.register_node('color:'..name..'_streak', {
description = desc..' Laminate',
tiles = {{name='color_streak.png', align_style='world', scale=4}},
paramtype2 = 'colorfacedir',
paramtype2 = 'color',
palette = 'color_'..name..'.png',
color = hex,
groups = {breakable=1, stainable=1},
@ -141,7 +141,7 @@ for i in ipairs(colors) do
minetest.register_node('color:'..name..'_siding', {
description = desc..' Siding',
tiles = {{name='color_siding.png', align_style='world', scale=4}},
paramtype2 = 'colorfacedir',
paramtype2 = 'color',
palette = 'color_'..name..'.png',
color = hex,
groups = {breakable=1, stainable=1},
@ -156,7 +156,7 @@ for i in ipairs(colors) do
minetest.register_node('color:'..name..'_shake', {
description = desc..' Shake',
tiles = {{name='color_shake.png', align_style='world', scale=4}},
paramtype2 = 'colorfacedir',
paramtype2 = 'color',
palette = 'color_'..name..'.png',
color = hex,
groups = {breakable=1, stainable=1},

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -6,4 +6,19 @@ decals.register_decal_colored('glitter_4', 'Glitter')
decals.register_decal_colored('glitter_5', 'Glitter')
decals.register_decal_colored('glitter_6', 'Glitter')
decals.register_decal_colored('blood_splatter_01', 'Blood Splatter')
decals.register_decal_colored('blood_splatter_02', 'Blood Splatter')
decals.register_decal_colored('blood_splatter_03', 'Blood Splatter')
decals.register_decal_colored('blood_splatter_04', 'Blood Splatter')
decals.register_decal_colored('blood_splatter_05', 'Blood Splatter')
decals.register_decal_colored('blood_splatter_06', 'Bloody Handprint')
decals.register_decal_colored('blood_splatter_07', 'Blood Splatter')
decals.register_decal_colored('blood_splatter_08', 'Blood Splatter')
decals.register_decal_colored('blood_splatter_09', 'Blood Splatter')
decals.register_decal_colored('blood_splatter_10', 'Blood Splatter')
decals.register_decal_colored('blood_splatter_11', 'Blood Splatter')
decals.register_decal_colored('tire_skid_01', 'Tire Skid Mark')
decals.register_decal_colored('tire_skid_02', 'Tire Skid Mark')
decals.register_decal_raillike('autumn_leaves_2', 'Fallen Leaves')

View File

@ -58,7 +58,7 @@ function decals.register_decal_colored(name, desc)
paramtype = 'light',
paramtype2 = 'facedir',
sunlight_propagates = true,
use_texture_alpha = 'clip',
use_texture_alpha = 'blend',
walkable = false,
selection_box = {
type = 'fixed',

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -113,7 +113,7 @@ function doors.door_toggle(pos, node, clicker, close)
if not close then
local wield = clicker:get_wielded_item()
local wield_name = wield:get_name()
if not minetest.is_protected(pos, player_name) and minetest.check_player_privs(player_name, { creative = true })then
if not minetest.is_protected(pos, player_name) and minetest.check_player_privs(player_name, { creative = true }) then
else
if lock_status == 1 and (minetest.is_protected(pos, player_name) or not minetest.check_player_privs(player_name, { creative = true })) then
return
@ -355,10 +355,38 @@ end
----trapdoor----
function doors.trapdoor_toggle(pos, node, clicker)
function doors.trapdoor_toggle(pos, node, clicker, close)
node = node or minetest.get_node(pos)
local meta = minetest.get_meta(pos)
local def = minetest.registered_nodes[node.name]
local player_name = clicker:get_player_name()
local lock_status = meta:get_int('lock_s')
if not close then
local wield = clicker:get_wielded_item()
local wield_name = wield:get_name()
if not minetest.is_protected(pos, player_name) and minetest.check_player_privs(player_name, { creative = true }) then
else
if lock_status == 1 and (minetest.is_protected(pos, player_name) or not minetest.check_player_privs(player_name, { creative = true })) then
return
elseif lock_status == 2 then
local key = meta:get_string('key')
if wield_name ~= key then
local def = minetest.registered_items[key]
local key_name = def.description
minetest.chat_send_player(player_name, 'This door can be opened/closed with a '..key_name..'.')
return
else
minetest.after(3, function()
doors.trapdoor_toggle(pos, nil, clicker, true)
end)
end
elseif lock_status >= 3 then
minetest.chat_send_player(player_name, 'The lock looks cheap, you might be able to pick it.')
return
end
end
end
if string.sub(node.name, -5) == '_open' then
minetest.sound_play(def.sound_close,
@ -390,7 +418,7 @@ function doors.register_trapdoor(name, def)
def.paramtype2 = 'facedir'
def.is_ground_content = false
def.use_texture_alpha = 'clip'
def.groups = {breakable=1}
def.groups = {breakable=1, door=2}
--if not def.sounds then
-- def.sounds = default.node_sound_wood_defaults()

View File

@ -95,6 +95,7 @@ function doors.lock_picking_formspec(player, timer)
'image[3.5,4.5;1,1;doors_key_profile_'..val4..'.png]'..
'image[4.5,4.5;1,1;doors_key_profile_'..val5..'.png]'..
'button[5.75,4.5;2,1;check;Check]'..
'button_exit[3,7.125;2,.75;exit;Exit]'..
'list[detached:lock_picking_solution_'..pname..';pattern;1,6;5,1;]'..
'listring[]'
return formspec
@ -103,6 +104,9 @@ end
minetest.register_on_player_receive_fields(function(player, formname, fields)
local name = player:get_player_name()
if formname == 'doors:lock_picking' then
if fields.exit then
doors.lock_pick_timer[name] = 0
end
if fields.check then
local inv = minetest.get_inventory({type = 'detached', name = 'lock_picking_solution_'..name})
local slot1 = inv:get_stack('pattern', 1)
@ -122,10 +126,18 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
minetest.chat_send_player(name, 'nice work!')
doors.lock_pick_timer[name] = 0
minetest.close_formspec(name, 'doors:lock_picking')
doors.door_toggle(pos, nil, player, true)
minetest.after(3, function()
local node = minetest.get_node(pos)
if minetest.get_item_group(node.name, 'door') == 1 then --Standard door
doors.door_toggle(pos, nil, player, true)
end)
minetest.after(3, function()
doors.door_toggle(pos, nil, player, true)
end)
else --Trapdoor
doors.trapdoor_toggle(pos, nil, player, true)
minetest.after(3, function()
doors.trapdoor_toggle(pos, nil, player, true)
end)
end
else
minetest.chat_send_player(name, 'Try again!')
end

View File

@ -24,3 +24,27 @@ function furniture.lectern_view_sign(title, content)
"textarea[0.5,1.5;10.6,6.5;;;"..esc(content).."]"
return formspec
end
local news_stand_formspec =
'size[11,8]'..
'no_prepend[]'..
'bgcolor[#080808BB;true]'
--'background[0,0;11,8;furniture_lectern_formspec.png]'
function furniture.news_stand_edit(title, content)
local formspec =
news_stand_formspec..
"field[0.5,1;7.5,0;title;"..esc("Title:")..";"..esc(title) .. "]" ..
"label[0.25,1.1;Body:]"..
"textarea[0.5,1.5;10.6,5.5;content;;"..esc(content).."]" ..
"button_exit[4,6.5;4,1;save;Save]"
return formspec
end
function furniture.news_stand_view(title, content)
local formspec =
news_stand_formspec..
'hypertext[0,0;11,1;;<center><style color=black size=40>'..esc(title)..'</style></center>]'..
"textarea[0.5,1.5;10.6,6.5;;;"..esc(content).."]"
return formspec
end

View File

@ -98,6 +98,7 @@ dofile(minetest.get_modpath('furniture')..'/kitchen.lua') --appliances and count
dofile(minetest.get_modpath('furniture')..'/library.lua') --Books things.
dofile(minetest.get_modpath('furniture')..'/medical.lua') --Stuff you might find in a hospital
dofile(minetest.get_modpath('furniture')..'/misc.lua') --Miscilanious things that don't particularly fit any single category
dofile(minetest.get_modpath('furniture')..'/news.lua')
dofile(minetest.get_modpath('furniture')..'/office.lua') --Things you'd find in an office.
dofile(minetest.get_modpath('furniture')..'/outdoors.lua')
dofile(minetest.get_modpath('furniture')..'/retail_shelving.lua') --Shelves like you'd find in a store.

View File

@ -23,7 +23,7 @@ minetest.register_node('furniture:cabinet_wall_half', {
description = 'Wall Mounted Cabinet(1/2 hight)',
drawtype = 'mesh',
mesh = 'furniture_cabinet_wall_half.obj',
tiles = {'furniture_cabinet_wall.png'},
tiles = {'furniture_cabinet_wall_half.png'},
paramtype = 'light',
paramtype2 = 'colorfacedir',
palette = 'furniture_stain_palette.png',
@ -84,10 +84,10 @@ minetest.register_node('furniture:cabinet_counter_sink', {
})
minetest.register_node('furniture:cabinet_counter_corner_inside', {
description = 'Cabinet with Countertop',
description = 'Cabinet with Countertop (Inside Corner)',
drawtype = 'mesh',
mesh = 'furniture_cabinet_counter_corner_inside.obj',
tiles = {'furniture_cabinet_counter.png'},
mesh = 'furniture_cabinet_counter_ci.obj',
tiles = {'furniture_cabinet_counter_ci.png'},
paramtype = 'light',
paramtype2 = 'colorfacedir',
palette = 'furniture_stain_palette.png',
@ -105,10 +105,10 @@ minetest.register_node('furniture:cabinet_counter_corner_inside', {
})
minetest.register_node('furniture:cabinet_counter_corner_outside', {
description = 'Cabinet with Countertop',
description = 'Cabinet with Countertop (Outside Corner)',
drawtype = 'mesh',
mesh = 'furniture_cabinet_counter_corner_outside.obj',
tiles = {'furniture_cabinet_counter.png'},
mesh = 'furniture_cabinet_counter_co.obj',
tiles = {'furniture_cabinet_counter_co.png'},
paramtype = 'light',
paramtype2 = 'colorfacedir',
palette = 'furniture_stain_palette.png',
@ -125,6 +125,46 @@ minetest.register_node('furniture:cabinet_counter_corner_outside', {
on_punch = furniture.punch
})
--Modern textures (grey in color)
minetest.register_node('furniture:cabinet_wall_1', {
description = 'Wall Mounted Cabinet',
drawtype = 'mesh',
mesh = 'furniture_cabinet_wall.obj',
tiles = {'furniture_cabinet_wall_1.png'},
paramtype = 'light',
paramtype2 = 'facedir',
selection_box = {
type = 'fixed',
fixed = {-.5, -.5, -.3, .5, .5, .5},
},
collision_box = {
type = 'fixed',
fixed = {-.5, -.5, -.3, .5, .5, .5},
},
groups = {breakable=1, stash=1},
on_punch = furniture.punch
})
minetest.register_node('furniture:cabinet_wall_half_1', {
description = 'Wall Mounted Cabinet(1/2 hight)',
drawtype = 'mesh',
mesh = 'furniture_cabinet_wall_half.obj',
tiles = {'furniture_cabinet_wall_half_1.png'},
paramtype = 'light',
paramtype2 = 'facedir',
selection_box = {
type = 'fixed',
fixed = {-.5, -.125, -.3, .5, .5, .5},
},
collision_box = {
type = 'fixed',
fixed = {-.5, -.125, -.3, .5, .5, .5},
},
groups = {breakable=1, stash=1},
on_punch = furniture.punch
})
minetest.register_node('furniture:cabinet_counter_1', {
description = 'Cabinet with Countertop',
drawtype = 'mesh',
@ -141,6 +181,7 @@ minetest.register_node('furniture:cabinet_counter_1', {
fixed = {-.5, -.5, -.5, .5, .5, .5},
},
groups = {breakable=1, stash=1},
on_punch = furniture.punch
})
minetest.register_node('furniture:cabinet_counter_sink_1', {
@ -159,13 +200,14 @@ minetest.register_node('furniture:cabinet_counter_sink_1', {
fixed = {-.5, -.5, -.5, .5, .5, .5},
},
groups = {breakable=1, stash=1},
on_punch = furniture.punch
})
minetest.register_node('furniture:cabinet_counter_corner_inside_1', {
description = 'Cabinet with Countertop',
description = 'Cabinet with Countertop (Inside Corner)',
drawtype = 'mesh',
mesh = 'furniture_cabinet_counter_corner_inside.obj',
tiles = {'furniture_cabinet_counter_1.png'},
mesh = 'furniture_cabinet_counter_ci.obj',
tiles = {'furniture_cabinet_counter_ci_1.png'},
paramtype = 'light',
paramtype2 = 'facedir',
selection_box = {
@ -177,13 +219,14 @@ minetest.register_node('furniture:cabinet_counter_corner_inside_1', {
fixed = {-.5, -.5, -.5, .5, .5, .5},
},
groups = {breakable=1, stash=1},
on_punch = furniture.punch
})
minetest.register_node('furniture:cabinet_counter_corner_outside_1', {
description = 'Cabinet with Countertop',
description = 'Cabinet with Countertop (Outside Corner)',
drawtype = 'mesh',
mesh = 'furniture_cabinet_counter_corner_outside.obj',
tiles = {'furniture_cabinet_counter_1.png'},
mesh = 'furniture_cabinet_counter_co.obj',
tiles = {'furniture_cabinet_counter_co_1.png'},
paramtype = 'light',
paramtype2 = 'facedir',
selection_box = {
@ -195,6 +238,7 @@ minetest.register_node('furniture:cabinet_counter_corner_outside_1', {
fixed = {-.5, -.5, -.5, .5, .5, .5},
},
groups = {breakable=1, stash=1},
on_punch = furniture.punch
})
minetest.register_node('furniture:microwave', {
@ -213,6 +257,7 @@ minetest.register_node('furniture:microwave', {
fixed = {-.425, -.5, -.375, .425, .2, .4},
},
groups = {breakable=1, stash=1},
on_punch = furniture.punch
})
minetest.register_node('furniture:oven', {
@ -223,6 +268,7 @@ minetest.register_node('furniture:oven', {
paramtype = 'light',
paramtype2 = 'facedir',
groups = {breakable=1, stash=1},
on_punch = furniture.punch
})
minetest.register_node('furniture:refrigerator_industrial', {
@ -241,6 +287,7 @@ minetest.register_node('furniture:refrigerator_industrial', {
fixed = {-.5, -.5, -.375, .5, 1.5, .5},
},
groups = {breakable=1, stash=1},
on_punch = furniture.punch
})
minetest.register_node('furniture:refrigerator', {

View File

@ -15,7 +15,7 @@ minetest.register_node('furniture:lectern', {
type = 'fixed',
fixed = {-.3, -.5, -.3, .3, .5, .3},
},
groups = {breakable=1, stash=1},
groups = {breakable=1},
after_place_node = function(pos, placer)
local meta = minetest.get_meta(pos)
meta:set_string('owner', placer:get_player_name())

View File

@ -1,4 +1,4 @@
# Blender v2.82 (sub 7) OBJ File: 'furniture.blend'
# Blender v2.93.5 OBJ File: 'furniture.blend'
# www.blender.org
o Bench_short_Cube.003
v -1.375000 -0.125000 0.375000
@ -41,62 +41,60 @@ v 0.187500 -0.500000 0.312500
v 0.312500 -0.500000 0.312500
v 0.187500 -0.500000 0.187500
v 0.312500 -0.500000 0.187500
vt 1.000000 0.937500
vt 0.937500 0.937500
vt 0.937500 0.562500
vt 1.000000 0.562500
vt 0.937500 0.500000
vt 0.062500 0.562500
vt 0.062500 0.500000
vt 0.000000 0.562500
vt 0.062500 0.937500
vt 0.000000 0.937500
vt 0.062500 1.000000
vt 0.468750 0.812500
vt 0.500000 0.812500
vt 0.500000 1.000000
vt 0.468750 1.000000
vt 0.468750 0.562500
vt 0.468750 0.593750
vt 0.031250 0.593750
vt 0.031250 0.562500
vt 0.031250 1.000000
vt 0.000000 1.000000
vt 0.000000 0.812500
vt 0.031250 0.812500
vt 0.031250 0.781250
vt 0.468750 0.781250
vt 0.968750 0.796875
vt 0.937500 0.796875
vt 0.937500 0.703125
vt 0.968750 0.703125
vt 0.906250 0.796875
vt 0.875000 0.796875
vt 0.875000 0.703125
vt 0.906250 0.703125
vt 1.000000 0.796875
vt 1.000000 0.703125
vt 0.968750 1.000000
vt 0.937500 1.000000
vt 0.937500 0.562500
vt 0.062500 0.562500
vt 0.062500 0.937500
vt 0.937500 0.937500
vt 0.187500 0.187500
vt 0.125000 0.187500
vt 0.125000 0.000000
vt 0.187500 0.000000
vt 0.062500 0.187500
vt 0.000000 0.187500
vt 0.000000 0.000000
vt 0.062500 0.000000
vt 0.250000 0.187500
vt 0.250000 0.000000
vt 0.500000 0.187500
vt 0.437500 0.187500
vt 0.437500 0.000000
vt 0.500000 0.000000
vt 0.375000 0.187500
vt 0.312500 0.187500
vt 0.312500 0.000000
vt 0.375000 0.000000
vt 0.562500 0.187500
vt 0.562500 0.000000
vt 0.187500 0.406250
vt 0.125000 0.406250
vt 0.125000 0.218750
vt 0.187500 0.218750
vt 0.062500 0.406250
vt 0.000000 0.406250
vt 0.000000 0.218750
vt 0.062500 0.218750
vt 0.250000 0.406250
vt 0.250000 0.218750
vt 0.500000 0.406250
vt 0.437500 0.406250
vt 0.437500 0.218750
vt 0.500000 0.218750
vt 0.375000 0.406250
vt 0.312500 0.406250
vt 0.312500 0.218750
vt 0.375000 0.218750
vt 0.562500 0.406250
vt 0.562500 0.218750
vt 0.937500 0.906250
vt 0.968750 0.906250
vt 0.906250 1.000000
vt 0.875000 1.000000
vt 0.875000 0.906250
vt 0.906250 0.906250
vt 1.000000 1.000000
vt 1.000000 0.906250
vt 0.968750 0.695312
vt 0.937500 0.695312
vt 0.937500 0.601562
vt 0.968750 0.601562
vt 0.906250 0.695312
vt 0.875000 0.695312
vt 0.875000 0.601562
vt 0.906250 0.601562
vt 1.000000 0.695312
vt 1.000000 0.601562
vt 0.968750 0.898438
vt 0.937500 0.898438
vt 0.937500 0.804688
vt 0.968750 0.804688
vt 0.906250 0.898438
vt 0.875000 0.898438
vt 0.875000 0.804688
vt 0.906250 0.804688
vt 1.000000 0.898438
vt 1.000000 0.804688
vn -1.0000 0.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
@ -105,24 +103,24 @@ vn 0.0000 -1.0000 0.0000
vn 0.0000 1.0000 0.0000
s off
f 1/1/1 2/2/1 4/3/1 3/4/1
f 3/5/2 4/3/2 8/6/2 7/7/2
f 7/8/3 8/6/3 6/9/3 5/10/3
f 5/11/4 6/9/4 2/2/4 1/12/4
f 3/13/5 7/14/5 5/15/5 1/16/5
f 8/6/6 4/3/6 2/2/6 6/9/6
f 11/17/4 9/18/4 14/19/4 16/20/4
f 10/21/2 12/22/2 15/23/2 13/24/2
f 12/25/3 11/17/3 16/20/3 15/26/3
f 9/18/1 10/21/1 13/24/1 14/19/1
f 19/27/1 17/28/1 22/29/1 24/30/1
f 18/31/3 20/32/3 23/33/3 21/34/3
f 20/35/4 19/27/4 24/30/4 23/36/4
f 17/28/2 18/31/2 21/34/2 22/29/2
f 27/37/2 25/38/2 30/39/2 32/40/2
f 26/41/4 28/42/4 31/43/4 29/44/4
f 28/45/1 27/37/1 32/40/1 31/46/1
f 25/38/3 26/41/3 29/44/3 30/39/3
f 35/47/3 33/48/3 38/49/3 40/50/3
f 34/51/1 36/52/1 39/53/1 37/54/1
f 36/55/2 35/47/2 40/50/2 39/56/2
f 33/48/4 34/51/4 37/54/4 38/49/4
f 3/5/2 4/6/2 8/7/2 7/8/2
f 7/9/3 8/10/3 6/11/3 5/12/3
f 5/12/4 6/13/4 2/14/4 1/1/4
f 3/4/5 7/9/5 5/12/5 1/1/5
f 8/7/6 4/6/6 2/14/6 6/13/6
f 11/15/4 9/16/4 14/17/4 16/18/4
f 10/19/2 12/20/2 15/21/2 13/22/2
f 12/23/3 11/15/3 16/18/3 15/24/3
f 9/16/1 10/19/1 13/22/1 14/17/1
f 19/25/1 17/26/1 22/27/1 24/28/1
f 18/29/3 20/30/3 23/31/3 21/32/3
f 20/33/4 19/25/4 24/28/4 23/34/4
f 17/26/2 18/29/2 21/32/2 22/27/2
f 27/35/2 25/36/2 30/37/2 32/38/2
f 26/39/4 28/40/4 31/41/4 29/42/4
f 28/43/1 27/35/1 32/38/1 31/44/1
f 25/36/3 26/39/3 29/42/3 30/37/3
f 35/45/3 33/46/3 38/47/3 40/48/3
f 34/49/1 36/50/1 39/51/1 37/52/1
f 36/53/2 35/45/2 40/48/2 39/54/2
f 33/46/4 34/49/4 37/52/4 38/47/4

View File

@ -1,14 +1,14 @@
# Blender v2.82 (sub 7) OBJ File: 'furniture.blend'
# Blender v2.93.5 OBJ File: 'furniture.blend'
# www.blender.org
o Bench_picnic_Cube.013
v -1.375000 -0.125000 1.375000
v -1.375000 0.000000 1.375000
v -1.375000 -0.125000 1.000000
v -1.375000 0.000000 1.000000
v 0.375000 -0.125000 1.375000
v 0.375000 0.000000 1.375000
v 0.375000 -0.125000 1.000000
v 0.375000 0.000000 1.000000
v 0.500000 -0.125000 1.375000
v 0.500000 0.000000 1.375000
v 0.500000 -0.125000 1.000000
v 0.500000 0.000000 1.000000
v -1.312500 -0.125000 1.250000
v -1.312500 -0.125000 1.125000
v -1.187500 -0.125000 1.250000
@ -17,30 +17,30 @@ v -1.312500 -0.500000 1.125000
v -1.312500 -0.500000 1.250000
v -1.187500 -0.500000 1.125000
v -1.187500 -0.500000 1.250000
v 0.375000 0.500000 -0.062500
v 0.375000 0.375000 -0.062500
v 0.375000 0.500000 1.062500
v 0.375000 0.375000 1.062500
v 0.500000 0.500000 -0.062500
v 0.500000 0.375000 -0.062500
v 0.500000 0.500000 1.062500
v 0.500000 0.375000 1.062500
v -1.375000 0.500000 -0.062500
v -1.375000 0.375000 -0.062500
v -1.375000 0.500000 1.062500
v -1.375000 0.375000 1.062500
v 0.437500 -0.125000 1.250000
v 0.312500 -0.125000 1.250000
v 0.187500 -0.125000 1.250000
v 0.437500 -0.125000 1.125000
v 0.312500 -0.125000 1.125000
v 0.187500 -0.125000 1.125000
v 0.187500 -0.500000 1.250000
v 0.312500 -0.500000 1.250000
v 0.187500 -0.500000 1.125000
v 0.437500 -0.500000 1.250000
v 0.312500 -0.500000 1.125000
v 0.437500 -0.500000 1.125000
v -1.375000 -0.125000 0.000000
v -1.375000 0.000000 0.000000
v -1.375000 -0.125000 -0.375000
v -1.375000 0.000000 -0.375000
v 0.375000 -0.125000 0.000000
v 0.375000 0.000000 0.000000
v 0.375000 -0.125000 -0.375000
v 0.375000 0.000000 -0.375000
v 0.500000 -0.125000 0.000000
v 0.500000 0.000000 0.000000
v 0.500000 -0.125000 -0.375000
v 0.500000 0.000000 -0.375000
v -1.312500 -0.125000 -0.125000
v -1.312500 -0.125000 -0.250000
v -1.187500 -0.125000 -0.125000
@ -49,22 +49,22 @@ v -1.312500 -0.500000 -0.250000
v -1.312500 -0.500000 -0.125000
v -1.187500 -0.500000 -0.250000
v -1.187500 -0.500000 -0.125000
v 0.437500 -0.125000 -0.125000
v 0.312500 -0.125000 -0.125000
v 0.187500 -0.125000 -0.125000
v 0.437500 -0.125000 -0.250000
v 0.312500 -0.125000 -0.250000
v 0.187500 -0.125000 -0.250000
v 0.187500 -0.500000 -0.125000
v 0.312500 -0.500000 -0.125000
v 0.187500 -0.500000 -0.250000
v 0.437500 -0.500000 -0.125000
v 0.312500 -0.500000 -0.250000
v 0.187500 -0.187500 1.312500
v 0.125000 -0.187500 1.312500
v 0.187500 -0.375000 1.312500
v 0.125000 -0.375000 1.312500
v 0.187500 -0.187500 -0.312500
v 0.125000 -0.187500 -0.312500
v 0.187500 -0.375000 -0.312500
v 0.125000 -0.375000 -0.312500
v 0.437500 -0.500000 -0.250000
v 0.312500 -0.187500 1.312500
v 0.250000 -0.187500 1.312500
v 0.312500 -0.375000 1.312500
v 0.250000 -0.375000 1.312500
v 0.312500 -0.187500 -0.312500
v 0.250000 -0.187500 -0.312500
v 0.312500 -0.375000 -0.312500
v 0.250000 -0.375000 -0.312500
v -1.125000 -0.187500 1.312500
v -1.187500 -0.187500 1.312500
v -1.125000 -0.375000 1.312500
@ -73,14 +73,14 @@ v -1.125000 -0.187500 -0.312500
v -1.187500 -0.187500 -0.312500
v -1.125000 -0.375000 -0.312500
v -1.187500 -0.375000 -0.312500
v 0.187500 0.375000 1.000000
v 0.125000 0.375000 1.000000
v 0.187500 0.250000 1.000000
v 0.125000 0.250000 1.000000
v 0.187500 0.375000 0.000000
v 0.125000 0.375000 0.000000
v 0.187500 0.250000 0.000000
v 0.125000 0.250000 0.000000
v 0.312500 0.375000 1.000000
v 0.250000 0.375000 1.000000
v 0.312500 0.250000 1.000000
v 0.250000 0.250000 1.000000
v 0.312500 0.375000 0.000000
v 0.250000 0.375000 0.000000
v 0.312500 0.250000 0.000000
v 0.250000 0.250000 0.000000
v -1.125000 0.375000 1.000000
v -1.187500 0.375000 1.000000
v -1.125000 0.250000 1.000000
@ -97,186 +97,168 @@ v -1.125000 -0.500000 0.437500
v -1.125000 -0.500000 0.562500
v -1.000000 -0.500000 0.437500
v -1.000000 -0.500000 0.562500
v 0.000000 0.375000 0.562500
v 0.000000 0.375000 0.437500
v 0.125000 0.375000 0.562500
v 0.125000 0.375000 0.437500
v 0.000000 -0.500000 0.437500
v 0.000000 -0.500000 0.562500
v 0.250000 0.375000 0.562500
v 0.250000 0.375000 0.437500
v 0.125000 -0.500000 0.437500
v 0.125000 -0.500000 0.562500
vt 1.000000 0.937500
vt 0.937500 0.937500
vt 0.937500 0.750000
vt 1.000000 0.750000
vt 0.937500 0.687500
vt 0.062500 0.750000
vt 0.062500 0.687500
vt 0.000000 0.750000
vt 0.062500 0.937500
v 0.250000 -0.500000 0.437500
v 0.250000 -0.500000 0.562500
vt 0.468750 0.875000
vt 0.500000 0.875000
vt 0.500000 0.968750
vt 0.468750 0.968750
vt 0.500000 1.000000
vt 0.968750 0.968750
vt 0.968750 1.000000
vt 1.000000 0.968750
vt 0.968750 0.875000
vt 1.000000 0.875000
vt 0.968750 0.843750
vt 0.500000 0.843750
vt 0.500000 0.750000
vt 0.968750 0.750000
vt 0.773438 0.539062
vt 0.804688 0.539062
vt 0.804688 0.632812
vt 0.773438 0.632812
vt 0.835938 0.539062
vt 0.867188 0.539062
vt 0.867188 0.632812
vt 0.835938 0.632812
vt 0.742188 0.539062
vt 0.742188 0.632812
vt 0.406250 0.500000
vt 0.406250 0.031250
vt 0.687500 0.031250
vt 0.687500 0.500000
vt 1.000000 0.031250
vt 1.000000 0.500000
vt 0.718750 0.500000
vt 0.718750 0.031250
vt 1.000000 0.531250
vt 0.718750 0.531250
vt 0.718750 0.000000
vt 1.000000 0.000000
vt 0.773438 0.640625
vt 0.804688 0.640625
vt 0.804688 0.734375
vt 0.773438 0.734375
vt 0.835938 0.640625
vt 0.867188 0.640625
vt 0.867188 0.734375
vt 0.835938 0.734375
vt 0.742188 0.640625
vt 0.742188 0.734375
vt 0.375000 0.500000
vt 0.375000 0.031250
vt 0.000000 0.648438
vt 0.031250 0.648438
vt 0.031250 0.742188
vt 0.000000 0.742188
vt 0.031250 0.773438
vt 0.500000 0.742188
vt 0.500000 0.773438
vt 0.531250 0.742188
vt 0.500000 0.648438
vt 0.531250 0.648438
vt 0.500000 0.617188
vt 0.031250 0.617188
vt 0.500000 0.867188
vt 0.031250 0.867188
vt 0.968750 0.632812
vt 0.937500 0.632812
vt 0.937500 0.539062
vt 0.968750 0.539062
vt 0.906250 0.632812
vt 0.875000 0.632812
vt 0.875000 0.539062
vt 0.906250 0.539062
vt 1.000000 0.632812
vt 1.000000 0.539062
vt 0.906250 0.640625
vt 0.937500 0.640625
vt 0.937500 0.734375
vt 0.906250 0.734375
vt 0.968750 0.640625
vt 1.000000 0.640625
vt 1.000000 0.734375
vt 0.968750 0.734375
vt 0.875000 0.640625
vt 0.875000 0.734375
vt 0.109375 0.000000
vt 0.125000 0.000000
vt 0.125000 0.046875
vt 0.109375 0.046875
vt 0.125000 0.453125
vt 0.109375 0.453125
vt 0.125000 0.500000
vt 0.109375 0.500000
vt 0.062500 0.453125
vt 0.046875 0.453125
vt 0.046875 0.046875
vt 0.062500 0.046875
vt 0.000000 0.453125
vt 0.000000 0.046875
vt 0.132812 0.000000
vt 0.148438 0.000000
vt 0.148438 0.046875
vt 0.132812 0.046875
vt 0.148438 0.453125
vt 0.132812 0.453125
vt 0.148438 0.500000
vt 0.132812 0.500000
vt 0.210938 0.453125
vt 0.195312 0.453125
vt 0.195312 0.046875
vt 0.210938 0.046875
vt 0.257812 0.046875
vt 0.257812 0.453125
vt 0.312500 0.609375
vt 0.296875 0.609375
vt 0.296875 0.578125
vt 0.312500 0.578125
vt 0.296875 0.328125
vt 0.312500 0.328125
vt 0.296875 0.296875
vt 0.312500 0.296875
vt 0.343750 0.328125
vt 0.343750 0.578125
vt 0.265625 0.578125
vt 0.265625 0.328125
vt 0.335938 0.312500
vt 0.320312 0.312500
vt 0.320312 0.281250
vt 0.335938 0.281250
vt 0.320312 0.031250
vt 0.335938 0.031250
vt 0.320312 0.000000
vt 0.335938 0.000000
vt 0.367188 0.031250
vt 0.367188 0.281250
vt 0.289062 0.281250
vt 0.289062 0.031250
vt 0.226562 0.968750
vt 0.226562 0.937500
vt 0.445312 0.937500
vt 0.445312 0.968750
vt 0.226562 0.906250
vt 0.226562 0.875000
vt 0.445312 0.875000
vt 0.445312 0.906250
vt 0.226562 1.000000
vt 0.445312 1.000000
vt 0.000000 0.968750
vt 0.000000 0.937500
vt 0.062500 1.000000
vt 0.937500 1.000000
vt 0.937500 0.750000
vt 0.062500 0.750000
vt 0.062500 0.937500
vt 0.937500 0.937500
vt 0.187500 0.062500
vt 0.187500 0.125000
vt 0.000000 0.125000
vt 0.000000 0.062500
vt 0.187500 0.187500
vt 0.187500 0.250000
vt 0.000000 0.250000
vt 0.000000 0.187500
vt 0.187500 0.000000
vt 0.000000 0.000000
vt 0.062500 0.750000
vt 0.937500 0.750000
vt 0.937500 0.937500
vt 0.062500 0.937500
vt 0.937500 0.750000
vt 0.062500 0.750000
vt 0.062500 0.937500
vt 0.937500 0.937500
vt 0.062500 1.000000
vt 0.937500 1.000000
vt 0.000000 0.750000
vt 0.000000 0.937500
vt 1.000000 0.937500
vt 1.000000 0.750000
vt 0.531250 0.250000
vt 0.531250 0.312500
vt 0.343750 0.312500
vt 0.343750 0.250000
vt 0.531250 0.375000
vt 0.531250 0.437500
vt 0.343750 0.437500
vt 0.343750 0.375000
vt 0.531250 0.187500
vt 0.343750 0.187500
vt 0.062500 0.687500
vt 0.937500 0.687500
vt 1.000000 0.937500
vt 0.937500 0.937500
vt 0.937500 0.750000
vt 1.000000 0.750000
vt 0.937500 0.687500
vt 0.062500 0.750000
vt 0.062500 0.687500
vt 0.000000 0.750000
vt 0.062500 0.937500
vt 0.000000 0.937500
vt 0.062500 1.000000
vt 0.937500 1.000000
vt 0.937500 0.750000
vt 0.062500 0.750000
vt 0.062500 0.937500
vt 0.937500 0.937500
vt 0.187500 0.062500
vt 0.187500 0.125000
vt 0.000000 0.125000
vt 0.000000 0.062500
vt 0.187500 0.187500
vt 0.187500 0.250000
vt 0.000000 0.250000
vt 0.000000 0.187500
vt 0.187500 0.000000
vt 0.000000 0.000000
vt 0.531250 0.250000
vt 0.531250 0.312500
vt 0.343750 0.312500
vt 0.343750 0.250000
vt 0.531250 0.375000
vt 0.531250 0.437500
vt 0.343750 0.437500
vt 0.343750 0.375000
vt 0.531250 0.187500
vt 0.343750 0.187500
vt 0.890625 0.218750
vt 0.859375 0.218750
vt 0.859375 0.125000
vt 0.890625 0.125000
vt 0.859375 0.093750
vt 0.046875 0.125000
vt 0.046875 0.093750
vt 0.015625 0.125000
vt 0.046875 0.218750
vt 0.015625 0.218750
vt 0.046875 0.250000
vt 0.859375 0.250000
vt 0.859375 0.125000
vt 0.046875 0.125000
vt 0.046875 0.218750
vt 0.859375 0.218750
vt 0.953125 0.328125
vt 0.921875 0.328125
vt 0.921875 0.234375
vt 0.953125 0.234375
vt 0.921875 0.203125
vt 0.109375 0.234375
vt 0.109375 0.203125
vt 0.078125 0.234375
vt 0.109375 0.328125
vt 0.078125 0.328125
vt 0.109375 0.359375
vt 0.921875 0.359375
vt 0.921875 0.234375
vt 0.109375 0.234375
vt 0.109375 0.328125
vt 0.921875 0.328125
vt 0.734375 0.187500
vt 0.703125 0.187500
vt 0.703125 0.125000
vt 0.734375 0.125000
vt 0.703125 0.093750
vt 0.046875 0.125000
vt 0.046875 0.093750
vt 0.015625 0.125000
vt 0.046875 0.187500
vt 0.015625 0.187500
vt 0.046875 0.218750
vt 0.703125 0.218750
vt 0.703125 0.125000
vt 0.046875 0.125000
vt 0.046875 0.187500
vt 0.703125 0.187500
vt 0.734375 0.187500
vt 0.703125 0.187500
vt 0.703125 0.125000
vt 0.734375 0.125000
vt 0.703125 0.093750
vt 0.046875 0.125000
vt 0.046875 0.093750
vt 0.015625 0.125000
vt 0.046875 0.187500
vt 0.015625 0.187500
vt 0.046875 0.218750
vt 0.703125 0.218750
vt 0.703125 0.125000
vt 0.046875 0.125000
vt 0.046875 0.187500
vt 0.703125 0.187500
vt 0.437500 0.062500
vt 0.437500 0.125000
vt 0.000000 0.125000
vt 0.000000 0.062500
vt 0.437500 0.187500
vt 0.437500 0.250000
vt 0.000000 0.250000
vt 0.000000 0.187500
vt 0.437500 0.000000
vt 0.000000 0.000000
vt 0.437500 0.062500
vt 0.437500 0.125000
vt 0.000000 0.125000
vt 0.000000 0.062500
vt 0.437500 0.187500
vt 0.437500 0.250000
vt 0.000000 0.250000
vt 0.000000 0.187500
vt 0.437500 0.000000
vt 0.000000 0.000000
vt 0.218750 0.937500
vt 0.218750 0.968750
vt 0.000000 0.906250
vt 0.000000 0.875000
vt 0.218750 0.875000
vt 0.218750 0.906250
vt 0.000000 1.000000
vt 0.218750 1.000000
vn -1.0000 0.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
@ -288,65 +270,63 @@ f 1/1/1 2/2/1 4/3/1 3/4/1
f 3/5/2 4/3/2 8/6/2 7/7/2
f 7/8/3 8/6/3 6/9/3 5/10/3
f 5/11/4 6/9/4 2/2/4 1/12/4
f 3/13/5 7/14/5 5/15/5 1/16/5
f 3/13/5 7/14/5 5/11/5 1/12/5
f 8/6/6 4/3/6 2/2/6 6/9/6
f 11/17/4 9/18/4 14/19/4 16/20/4
f 10/21/2 12/22/2 15/23/2 13/24/2
f 12/25/3 11/17/3 16/20/3 15/26/3
f 9/18/1 10/21/1 13/24/1 14/19/1
f 17/27/6 21/28/6 23/29/6 19/30/6
f 22/31/5 18/32/5 20/33/5 24/34/5
f 20/35/4 19/30/4 23/29/4 24/36/4
f 18/37/3 17/27/3 19/30/3 20/38/3
f 24/39/1 23/29/1 21/28/1 22/40/1
f 27/41/3 25/42/3 30/43/3 32/44/3
f 26/45/1 28/46/1 31/47/1 29/48/1
f 28/49/2 27/41/2 32/44/2 31/50/2
f 25/42/4 26/45/4 29/48/4 30/43/4
f 18/51/2 22/52/2 21/28/2 17/27/2
f 33/53/1 34/54/1 36/55/1 35/56/1
f 35/57/2 36/55/2 40/58/2 39/59/2
f 39/60/3 40/58/3 38/61/3 37/62/3
f 37/63/4 38/61/4 34/54/4 33/64/4
f 35/65/5 39/66/5 37/67/5 33/68/5
f 40/58/6 36/55/6 34/54/6 38/61/6
f 43/69/4 41/70/4 46/71/4 48/72/4
f 42/73/2 44/74/2 47/75/2 45/76/2
f 44/77/3 43/69/3 48/72/3 47/78/3
f 41/70/1 42/73/1 45/76/1 46/71/1
f 51/79/3 49/80/3 54/81/3 56/82/3
f 50/83/1 52/84/1 55/85/1 53/86/1
f 52/87/2 51/79/2 56/82/2 55/88/2
f 49/80/4 50/83/4 53/86/4 54/81/4
f 57/89/4 58/90/4 60/91/4 59/92/4
f 59/93/5 60/91/5 64/94/5 63/95/5
f 63/96/2 64/94/2 62/97/2 61/98/2
f 61/99/6 62/97/6 58/90/6 57/100/6
f 59/101/3 63/102/3 61/103/3 57/104/3
f 64/94/1 60/91/1 58/90/1 62/97/1
f 65/105/4 66/106/4 68/107/4 67/108/4
f 67/109/5 68/107/5 72/110/5 71/111/5
f 71/112/2 72/110/2 70/113/2 69/114/2
f 69/115/6 70/113/6 66/106/6 65/116/6
f 67/117/3 71/118/3 69/119/3 65/120/3
f 72/110/1 68/107/1 66/106/1 70/113/1
f 73/121/4 74/122/4 76/123/4 75/124/4
f 75/125/5 76/123/5 80/126/5 79/127/5
f 79/128/2 80/126/2 78/129/2 77/130/2
f 77/131/6 78/129/6 74/122/6 73/132/6
f 75/133/3 79/134/3 77/135/3 73/136/3
f 80/126/1 76/123/1 74/122/1 78/129/1
f 81/137/4 82/138/4 84/139/4 83/140/4
f 83/141/5 84/139/5 88/142/5 87/143/5
f 87/144/2 88/142/2 86/145/2 85/146/2
f 85/147/6 86/145/6 82/138/6 81/148/6
f 83/149/3 87/150/3 85/151/3 81/152/3
f 88/142/1 84/139/1 82/138/1 86/145/1
f 91/153/4 89/154/4 94/155/4 96/156/4
f 90/157/2 92/158/2 95/159/2 93/160/2
f 92/161/3 91/153/3 96/156/3 95/162/3
f 89/154/1 90/157/1 93/160/1 94/155/1
f 99/163/4 97/164/4 102/165/4 104/166/4
f 98/167/2 100/168/2 103/169/2 101/170/2
f 100/171/3 99/163/3 104/166/3 103/172/3
f 97/164/1 98/167/1 101/170/1 102/165/1
f 11/15/4 9/16/4 14/17/4 16/18/4
f 10/19/2 12/20/2 15/21/2 13/22/2
f 12/23/3 11/15/3 16/18/3 15/24/3
f 9/16/1 10/19/1 13/22/1 14/17/1
f 17/25/6 21/26/6 23/27/6 19/28/6
f 22/29/5 18/30/5 20/31/5 24/32/5
f 20/31/4 19/28/4 23/27/4 24/32/4
f 18/30/3 17/33/3 19/34/3 20/31/3
f 24/32/1 23/35/1 21/36/1 22/29/1
f 27/37/3 25/38/3 30/39/3 32/40/3
f 26/41/1 28/42/1 31/43/1 29/44/1
f 28/45/2 27/37/2 32/40/2 31/46/2
f 25/38/4 26/41/4 29/44/4 30/39/4
f 18/47/2 22/48/2 21/26/2 17/25/2
f 33/49/1 34/50/1 36/51/1 35/52/1
f 35/53/2 36/51/2 40/54/2 39/55/2
f 39/56/3 40/54/3 38/57/3 37/58/3
f 37/59/4 38/57/4 34/50/4 33/60/4
f 35/53/5 39/55/5 37/61/5 33/62/5
f 40/54/6 36/51/6 34/50/6 38/57/6
f 43/63/4 41/64/4 46/65/4 48/66/4
f 42/67/2 44/68/2 47/69/2 45/70/2
f 44/71/3 43/63/3 48/66/3 47/72/3
f 41/64/1 42/67/1 45/70/1 46/65/1
f 51/73/3 49/74/3 54/75/3 56/76/3
f 50/77/1 52/78/1 55/79/1 53/80/1
f 52/81/2 51/73/2 56/76/2 55/82/2
f 49/74/4 50/77/4 53/80/4 54/75/4
f 57/83/4 58/84/4 60/85/4 59/86/4
f 59/86/5 60/85/5 64/87/5 63/88/5
f 63/88/2 64/87/2 62/89/2 61/90/2
f 61/91/6 62/92/6 58/93/6 57/94/6
f 59/86/3 63/88/3 61/91/3 57/94/3
f 64/95/1 60/96/1 58/93/1 62/92/1
f 65/97/4 66/98/4 68/99/4 67/100/4
f 67/100/5 68/99/5 72/101/5 71/102/5
f 71/102/2 72/101/2 70/103/2 69/104/2
f 69/105/6 70/106/6 66/107/6 65/108/6
f 67/109/3 71/110/3 69/105/3 65/108/3
f 72/101/1 68/99/1 66/107/1 70/106/1
f 73/111/4 74/112/4 76/113/4 75/114/4
f 75/114/5 76/113/5 80/115/5 79/116/5
f 79/116/2 80/115/2 78/117/2 77/118/2
f 75/114/3 79/116/3 77/119/3 73/120/3
f 80/115/1 76/113/1 74/121/1 78/122/1
f 81/123/4 82/124/4 84/125/4 83/126/4
f 83/126/5 84/125/5 88/127/5 87/128/5
f 87/128/2 88/127/2 86/129/2 85/130/2
f 83/126/3 87/128/3 85/131/3 81/132/3
f 88/127/1 84/125/1 82/133/1 86/134/1
f 91/135/4 89/136/4 94/137/4 96/138/4
f 90/139/2 92/140/2 95/141/2 93/142/2
f 92/143/3 91/135/3 96/138/3 95/144/3
f 89/136/1 90/139/1 93/142/1 94/137/1
f 99/145/4 97/146/4 102/147/4 104/148/4
f 98/149/2 100/150/2 103/151/2 101/152/2
f 100/153/3 99/145/3 104/148/3 103/154/3
f 97/146/1 98/149/1 101/152/1 102/147/1

View File

@ -1,4 +1,4 @@
# Blender v2.82 (sub 7) OBJ File: 'furniture.blend'
# Blender v2.93.5 OBJ File: 'furniture.blend'
# www.blender.org
o Bench_with_back_Cube.009
v -1.375000 -0.125000 0.437500
@ -65,98 +65,94 @@ v -1.187500 0.468750 0.281250
v -1.187500 0.468750 0.343750
v -1.187500 0.156250 0.343750
v -1.187500 0.156250 0.281250
vt 1.000000 0.937500
vt 0.937500 0.937500
vt 0.937500 0.531250
vt 1.000000 0.531250
vt 0.937500 0.468750
vt 0.062500 0.531250
vt 0.062500 0.468750
vt 0.000000 0.531250
vt 0.062500 0.937500
vt 0.000000 0.937500
vt 0.062500 1.000000
vt 0.500000 0.968750
vt 0.468750 0.968750
vt 0.468750 0.765625
vt 0.500000 0.765625
vt 0.468750 0.734375
vt 0.031250 0.765625
vt 0.031250 0.734375
vt -0.000000 0.765625
vt 0.031250 0.968750
vt -0.000000 0.968750
vt 0.031250 1.000000
vt 0.468750 1.000000
vt 0.031250 0.531250
vt 0.468750 0.531250
vt 0.906250 0.804688
vt 0.937500 0.804688
vt 0.937500 0.898438
vt 0.906250 0.898438
vt 0.968750 0.804688
vt 1.000000 0.804688
vt 1.000000 0.898438
vt 0.968750 0.898438
vt 0.875000 0.804688
vt 0.875000 0.898438
vt 0.968750 0.796875
vt 0.937500 0.796875
vt 0.937500 0.703125
vt 0.968750 0.703125
vt 0.906250 0.796875
vt 0.875000 0.796875
vt 0.875000 0.703125
vt 0.906250 0.703125
vt 1.000000 0.796875
vt 1.000000 0.703125
vt 0.906250 0.601562
vt 0.937500 0.601562
vt 0.937500 0.695312
vt 0.906250 0.695312
vt 0.968750 0.601562
vt 1.000000 0.601562
vt 1.000000 0.695312
vt 0.968750 0.695312
vt 0.875000 0.601562
vt 0.875000 0.695312
vt 0.906250 0.906250
vt 0.937500 0.906250
vt 0.937500 1.000000
vt 0.937500 0.531250
vt 0.062500 0.531250
vt 0.062500 0.937500
vt 0.937500 0.937500
vt 0.187500 0.187500
vt 0.125000 0.187500
vt 0.125000 0.000000
vt 0.187500 0.000000
vt 0.062500 0.187500
vt 0.000000 0.187500
vt 0.000000 0.000000
vt 0.062500 0.000000
vt 0.250000 0.187500
vt 0.250000 0.000000
vt 0.437500 0.187500
vt 0.375000 0.187500
vt 0.375000 0.000000
vt 0.437500 0.000000
vt 0.312500 0.187500
vt 0.250000 0.187500
vt 0.250000 0.000000
vt 0.312500 0.000000
vt 0.500000 0.187500
vt 0.500000 0.000000
vt 0.187500 0.406250
vt 0.125000 0.406250
vt 0.125000 0.218750
vt 0.187500 0.218750
vt 0.062500 0.406250
vt 0.000000 0.406250
vt 0.000000 0.218750
vt 0.062500 0.218750
vt 0.250000 0.406250
vt 0.250000 0.218750
vt 0.437500 0.406250
vt 0.375000 0.406250
vt 0.375000 0.218750
vt 0.437500 0.218750
vt 0.312500 0.406250
vt 0.250000 0.406250
vt 0.250000 0.218750
vt 0.312500 0.218750
vt 0.500000 0.406250
vt 0.500000 0.218750
vt 0.937500 0.250000
vt 0.875000 0.250000
vt 0.875000 0.000000
vt 0.937500 0.000000
vt 0.812500 0.250000
vt 0.750000 0.250000
vt 0.750000 0.000000
vt 0.812500 0.000000
vt 1.000000 0.250000
vt 1.000000 0.000000
vt 0.687500 0.250000
vt 0.625000 0.250000
vt 0.625000 0.000000
vt 0.687500 0.000000
vt 0.562500 0.250000
vt 0.500000 0.250000
vt 0.500000 0.000000
vt 0.562500 0.000000
vt 0.750000 0.250000
vt 0.750000 0.000000
vt 0.625000 0.312500
vt 0.687500 0.312500
vt 0.625000 0.250000
vt 0.875000 0.312500
vt 0.937500 0.312500
vt 0.875000 0.250000
vt 1.000000 0.843750
vt 0.906250 1.000000
vt 0.968750 0.906250
vt 1.000000 0.906250
vt 1.000000 1.000000
vt 0.312500 1.000000
vt 0.312500 0.843750
vt 1.000000 0.812500
vt 0.312500 0.812500
vt 1.000000 0.578125
vt 0.312500 0.578125
vt 1.000000 0.546875
vt 0.312500 0.546875
vt 0.968750 1.000000
vt 0.875000 0.906250
vt 0.875000 1.000000
vt 0.781250 0.968750
vt 0.750000 0.968750
vt 0.750000 0.843750
vt 0.781250 0.843750
vt 0.718750 0.968750
vt 0.687500 0.968750
vt 0.687500 0.843750
vt 0.718750 0.843750
vt 0.812500 0.968750
vt 0.812500 0.843750
vt 0.648438 0.968750
vt 0.617188 0.968750
vt 0.617188 0.843750
vt 0.648438 0.843750
vt 0.585938 0.968750
vt 0.554688 0.968750
vt 0.554688 0.843750
vt 0.585938 0.843750
vt 0.679688 0.968750
vt 0.679688 0.843750
vt 0.679688 1.000000
vt 0.648438 1.000000
vt 0.718750 1.000000
vt 0.687500 1.000000
vt 0.515625 0.718750
vt 0.515625 0.640625
vt 0.859375 0.640625
vt 0.859375 0.718750
vt 0.515625 0.734375
vt 0.859375 0.734375
vt 0.515625 0.812500
vt 0.859375 0.812500
vt 0.515625 0.828125
vt 0.859375 0.828125
vn -1.0000 0.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
@ -168,35 +164,35 @@ f 1/1/1 2/2/1 4/3/1 3/4/1
f 3/5/2 4/3/2 8/6/2 7/7/2
f 7/8/3 8/6/3 6/9/3 5/10/3
f 5/11/4 6/9/4 2/2/4 1/12/4
f 3/13/5 7/14/5 5/15/5 1/16/5
f 3/5/5 7/7/5 5/13/5 1/14/5
f 8/6/6 4/3/6 2/2/6 6/9/6
f 11/17/4 9/18/4 14/19/4 16/20/4
f 10/21/2 12/22/2 15/23/2 13/24/2
f 12/25/3 11/17/3 16/20/3 15/26/3
f 9/18/1 10/21/1 13/24/1 14/19/1
f 19/27/1 17/28/1 22/29/1 24/30/1
f 18/31/3 20/32/3 23/33/3 21/34/3
f 20/35/4 19/27/4 24/30/4 23/36/4
f 17/28/2 18/31/2 21/34/2 22/29/2
f 27/37/2 25/38/2 30/39/2 32/40/2
f 26/41/4 28/42/4 31/43/4 29/44/4
f 28/45/1 27/37/1 32/40/1 31/46/1
f 25/38/3 26/41/3 29/44/3 30/39/3
f 35/47/3 33/48/3 38/49/3 40/50/3
f 34/51/1 36/52/1 39/53/1 37/54/1
f 36/55/2 35/47/2 40/50/2 39/56/2
f 33/48/4 34/51/4 37/54/4 38/49/4
f 43/57/4 41/58/4 46/59/4 48/60/4
f 42/61/2 44/62/2 47/63/2 45/64/2
f 44/65/3 43/57/3 48/60/3 47/66/3
f 41/58/1 42/61/1 45/64/1 46/59/1
f 51/67/3 49/68/3 54/69/3 56/70/3
f 50/71/1 52/72/1 55/73/1 53/74/1
f 52/75/2 51/67/2 56/70/2 55/76/2
f 49/68/4 50/71/4 53/74/4 54/69/4
f 50/77/6 49/78/6 51/67/6 52/79/6
f 42/80/6 41/81/6 43/57/6 44/82/6
f 58/83/2 60/84/2 64/85/2 61/86/2
f 57/87/6 58/83/6 61/86/6 62/88/6
f 59/89/4 57/87/4 62/88/4 63/90/4
f 60/91/5 59/89/5 63/90/5 64/92/5
f 11/15/4 9/16/4 14/17/4 16/18/4
f 10/19/2 12/20/2 15/21/2 13/22/2
f 12/23/3 11/15/3 16/18/3 15/24/3
f 9/16/1 10/19/1 13/22/1 14/17/1
f 19/25/1 17/26/1 22/27/1 24/28/1
f 18/29/3 20/30/3 23/31/3 21/32/3
f 20/33/4 19/25/4 24/28/4 23/34/4
f 17/26/2 18/29/2 21/32/2 22/27/2
f 27/35/2 25/36/2 30/37/2 32/38/2
f 26/39/4 28/40/4 31/41/4 29/42/4
f 28/43/1 27/35/1 32/38/1 31/44/1
f 25/36/3 26/39/3 29/42/3 30/37/3
f 35/45/3 33/46/3 38/47/3 40/48/3
f 34/49/1 36/50/1 39/51/1 37/52/1
f 36/53/2 35/45/2 40/48/2 39/54/2
f 33/46/4 34/49/4 37/52/4 38/47/4
f 43/55/4 41/56/4 46/57/4 48/58/4
f 42/59/2 44/60/2 47/61/2 45/62/2
f 44/63/3 43/55/3 48/58/3 47/64/3
f 41/56/1 42/59/1 45/62/1 46/57/1
f 51/65/3 49/66/3 54/67/3 56/68/3
f 50/69/1 52/70/1 55/71/1 53/72/1
f 52/73/2 51/65/2 56/68/2 55/74/2
f 49/66/4 50/69/4 53/72/4 54/67/4
f 50/75/6 49/76/6 51/65/6 52/73/6
f 42/59/6 41/77/6 43/78/6 44/60/6
f 58/79/2 60/80/2 64/81/2 61/82/2
f 57/83/6 58/79/6 61/82/6 62/84/6
f 59/85/4 57/83/4 62/84/4 63/86/4
f 60/87/5 59/85/5 63/86/5 64/88/5

View File

@ -1,4 +1,4 @@
# Blender v2.90.0 Beta OBJ File: 'furniture.blend'
# Blender v2.93.5 OBJ File: 'furniture.blend'
# www.blender.org
o Cabinet_counter_Cube.008
v -0.500000 -0.375000 0.500000
@ -43,83 +43,82 @@ v -0.437500 0.312500 -0.437500
v -0.437500 -0.312500 -0.437500
v -0.031250 -0.312500 -0.437500
v -0.031250 0.312500 -0.437500
vt 0.875000 0.562500
vt 0.875000 0.937500
vt 0.937500 0.937500
vt 0.937500 0.562500
vt 1.000000 0.125000
vt 1.000000 0.500000
vt 0.500000 0.500000
vt 0.500000 0.125000
vt 0.875000 0.562500
vt 0.875000 0.937500
vt 0.546875 0.937500
vt 0.546875 0.562500
vt 0.000000 0.375000
vt 0.500000 0.375000
vt 0.500000 0.437500
vt 0.000000 0.437500
vt 0.000000 0.625000
vt 0.500000 0.625000
vt 0.500000 1.000000
vt 0.000000 1.000000
vt 0.937500 0.937500
vt 0.937500 1.000000
vt 0.875000 1.000000
vt 0.546875 0.937500
vt 0.546875 1.000000
vt 0.875000 1.000000
vt 0.500000 0.500000
vt 0.000000 0.500000
vt 0.937500 1.000000
vt 1.000000 1.000000
vt 1.000000 0.937500
vt 1.000000 0.937500
vt 1.000000 1.000000
vt 0.500000 0.562500
vt 0.000000 0.562500
vt 0.546875 1.000000
vt 0.937500 0.562500
vt 0.546875 0.562500
vt 0.500000 0.062500
vt 1.000000 0.062500
vt 0.546875 0.500000
vt 0.875000 0.500000
vt 0.875000 0.500000
vt 0.546875 0.500000
vt 0.500000 0.000000
vt 1.000000 0.000000
vt 0.031250 0.031250
vt 0.343750 0.031250
vt 0.343750 0.234375
vt 0.031250 0.234375
vt 0.578125 0.468750
vt 0.578125 0.656250
vt 0.546875 0.656250
vt 0.546875 0.468750
vt 0.250000 0.234375
vt 0.250000 0.421875
vt 0.000000 0.421875
vt 0.000000 0.234375
vt 0.000000 0.031250
vt 0.375000 0.031250
vt 0.375000 0.234375
vt 0.031250 0.000000
vt 0.343750 0.000000
vt 0.343750 0.265625
vt 0.031250 0.265625
vt 0.156250 0.140625
vt 0.468750 0.140625
vt 0.468750 0.343750
vt 0.156250 0.343750
vt 0.125000 0.343750
vt 0.125000 0.140625
vt 0.500000 0.140625
vt 0.500000 0.343750
vt 0.156250 0.109375
vt 0.468750 0.109375
vt 0.468750 0.375000
vt 0.156250 0.375000
vt 0.500000 0.937500
vt -0.000000 0.937500
vt 0.500000 0.562500
vt 1.000000 0.562500
vt 1.000000 0.937500
vt 0.500000 0.500000
vt 1.000000 0.500000
vt 0.445312 0.468750
vt 0.445312 0.656250
vt 0.257812 0.656250
vt 0.257812 0.468750
vt 0.250000 1.000000
vt 0.000000 1.000000
vt 0.000000 0.968750
vt 0.250000 0.968750
vt 0.250000 0.867188
vt 0.000000 0.867188
vt 0.000000 0.687500
vt 0.250000 0.687500
vt 0.476562 0.656250
vt 0.476562 0.687500
vt 0.445312 0.687500
vt 0.765625 0.656250
vt 0.765625 0.687500
vt 0.578125 0.687500
vt 0.000000 0.937500
vt 0.250000 0.937500
vt 0.546875 0.687500
vt 0.515625 0.687500
vt 0.515625 0.656250
vt 0.507812 0.656250
vt 0.507812 0.687500
vt 0.000000 0.906250
vt 0.250000 0.906250
vt 0.257812 0.687500
vt 0.476562 0.468750
vt 0.765625 0.468750
vt 0.000000 0.203125
vt 0.250000 0.203125
vt 0.257812 0.437500
vt 0.445312 0.437500
vt 0.578125 0.437500
vt 0.765625 0.437500
vt 0.000000 0.171875
vt 0.250000 0.171875
vt 0.984375 0.828125
vt 0.984375 0.984375
vt 0.882812 0.984375
vt 0.882812 0.828125
vt 0.882812 0.812500
vt 0.984375 0.812500
vt 0.984375 1.000000
vt 0.882812 1.000000
vt 1.000000 0.828125
vt 1.000000 0.984375
vt 0.867188 0.984375
vt 0.867188 0.828125
vt 0.843750 0.828125
vt 0.843750 0.984375
vt 0.742188 0.984375
vt 0.742188 0.828125
vt 0.742188 0.812500
vt 0.843750 0.812500
vt 0.843750 1.000000
vt 0.742188 1.000000
vt 0.859375 0.828125
vt 0.859375 0.984375
vt 0.726562 0.984375
vt 0.726562 0.828125
vt 0.000000 0.656250
vt 0.250000 0.656250
vt 0.000000 0.468750
vt 0.250000 0.468750
vt 0.000000 0.437500
vt 0.250000 0.437500
vn -1.0000 0.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
@ -158,5 +157,5 @@ f 36/65/5 38/66/5 42/61/5 39/60/5
f 35/67/1 36/68/1 39/60/1 40/59/1
f 38/69/3 37/70/3 41/62/3 42/61/3
f 9/19/6 2/71/6 6/72/6 12/20/6
f 1/73/6 5/74/6 6/75/6 2/71/6
f 5/74/6 1/73/6 27/76/6 28/77/6
f 1/73/6 5/74/6 6/72/6 2/71/6
f 5/74/6 1/73/6 27/75/6 28/76/6

View File

@ -1,6 +1,6 @@
# Blender v2.93.5 OBJ File: 'furniture.blend'
# www.blender.org
o Cabinet_counter_corner_Cube.036
o Cabinet_counter_ci_Cube.036
v -0.500000 -0.375000 0.500000
v -0.500000 0.375000 0.500000
v -0.500000 -0.375000 -0.375000
@ -60,96 +60,103 @@ v -0.250000 -0.500000 0.500000
v -0.250000 0.375000 0.500000
v -0.250000 0.500000 0.500000
v -0.250000 -0.375000 0.500000
vt 0.875000 0.562500
vt 0.875000 0.937500
vt 0.937500 0.937500
vt 0.937500 0.562500
vt 0.765625 0.593750
vt 0.765625 0.937500
vt 0.703125 0.937500
vt 0.703125 0.593750
vt 0.625000 0.562500
vt 0.625000 0.937500
vt 1.000000 0.937500
vt 1.000000 0.562500
vt 0.765625 0.937500
vt 0.828125 0.937500
vt 0.828125 1.000000
vt 0.765625 1.000000
vt 0.437500 0.625000
vt 0.500000 0.625000
vt 0.500000 1.000000
vt 0.437500 1.000000
vt 0.562500 0.937500
vt 0.562500 1.000000
vt 0.625000 1.000000
vt 0.546875 0.937500
vt 0.546875 1.000000
vt 0.875000 1.000000
vt 0.937500 0.937500
vt 1.000000 0.937500
vt 1.000000 1.000000
vt 0.937500 1.000000
vt 0.937500 1.000000
vt 0.500000 0.937500
vt 0.500000 1.000000
vt 0.375000 0.562500
vt -0.000000 0.562500
vt 0.000000 0.500000
vt 0.375000 0.500000
vt 1.000000 1.000000
vt 0.437500 0.562500
vt 0.500000 0.562500
vt 0.625000 0.500000
vt 0.562500 0.500000
vt 0.562500 0.562500
vt 0.546875 0.562500
vt 0.812500 0.062500
vt 0.750000 0.062500
vt 0.750000 0.000000
vt 0.812500 0.000000
vt 1.000000 0.500000
vt 0.875000 0.500000
vt 0.546875 0.500000
vt 0.812500 0.125000
vt 0.750000 0.125000
vt 0.500000 0.500000
vt 0.500000 0.562500
vt 0.375000 0.625000
vt 0.375000 1.000000
vt 0.875000 0.937500
vt 0.875000 1.000000
vt 0.437500 0.500000
vt 0.500000 0.500000
vt 1.000000 0.125000
vt 0.937500 0.125000
vt 0.937500 0.062500
vt 1.000000 0.062500
vt 0.937500 0.000000
vt 1.000000 0.000000
vt 0.500000 0.937500
vt 0.562500 0.937500
vt 0.562500 1.000000
vt 0.500000 0.562500
vt 0.562500 0.562500
vt 0.625000 0.562500
vt 0.562500 0.500000
vt 0.625000 0.500000
vt 0.625000 1.000000
vt 0.625000 0.937500
vt 0.500000 0.500000
vt 0.828125 0.593750
vt 0.765625 0.593750
vt 0.875000 0.562500
vt 0.875000 0.500000
vt 0.875000 0.062500
vt 0.875000 0.000000
vt 0.875000 0.125000
vt 0.812500 0.125000
vt -0.000000 0.625000
vt 0.312500 0.523438
vt 0.312500 0.710938
vt 0.281250 0.710938
vt 0.281250 0.523438
vt 0.250000 0.523438
vt 0.250000 0.710938
vt 0.218750 0.710938
vt 0.218750 0.523438
vt 0.687500 0.523438
vt 0.687500 0.710938
vt 0.500000 0.710938
vt 0.500000 0.523438
vt 0.250000 0.679688
vt 0.281250 0.679688
vt 0.281250 0.710938
vt 0.250000 0.710938
vt 0.062500 0.781250
vt 0.062500 0.750000
vt 0.250000 0.750000
vt 0.250000 0.781250
vt 0.718750 0.710938
vt 0.718750 0.742188
vt 0.687500 0.742188
vt 0.500000 0.710938
vt 0.500000 0.742188
vt 0.312500 0.742188
vt 0.218750 0.710938
vt 0.250000 0.710938
vt 0.250000 0.742188
vt 0.218750 0.742188
vt 0.281250 0.742188
vt 0.750000 0.710938
vt 0.750000 0.742188
vt 0.031250 0.812500
vt 0.031250 1.000000
vt 0.000000 1.000000
vt 0.937500 0.562500
vt 0.937500 0.937500
vt 0.000000 0.812500
vt 0.500000 0.742188
vt 0.031250 0.781250
vt 0.031250 0.750000
vt 0.687500 0.492188
vt 0.718750 0.492188
vt 0.718750 0.523438
vt 0.500000 0.523438
vt 0.218750 0.492188
vt 0.187500 0.492188
vt 0.187500 0.460938
vt 0.218750 0.460938
vt 0.500000 0.492188
vt 0.312500 0.492188
vt 0.500000 0.492188
vt 0.218750 0.523438
vt 0.187500 0.523438
vt 0.750000 0.492188
vt 0.750000 0.523438
vt 0.062500 0.812500
vt 0.250000 0.812500
vt 0.187500 0.710938
vt 0.187500 0.742188
vt 0.000000 0.781250
vt 0.000000 0.750000
vt 0.312500 0.523438
vt 0.281250 0.523438
vt 0.281250 0.492188
vt 0.312500 0.492188
vt 0.281250 0.460938
vt 0.312500 0.460938
vt 0.750000 0.742188
vt 0.750000 0.710938
vt 0.781250 0.710938
vt 0.781250 0.742188
vt 0.750000 0.523438
vt 0.781250 0.523438
vt 0.812500 0.523438
vt 0.781250 0.492188
vt 0.812500 0.492188
vt 0.812500 0.742188
vt 0.812500 0.710938
vt 1.000000 0.710938
vt 1.000000 0.742188
vt 1.000000 0.523438
vt 0.750000 0.492188
vt 0.281250 0.492188
vt 0.250000 0.492188
vt 0.187500 0.523438
vt 0.000000 0.523438
vt 0.000000 0.492188
vt 0.187500 0.492188
vt 0.250000 0.492188
vt 0.250000 0.460938
vt 0.250000 0.523438
vt 0.218750 0.523438
vt 1.000000 0.492188
vt 0.062500 1.000000
vt 0.000000 0.710938
vt 0.000000 0.742188
vt 0.250000 1.000000
vn -1.0000 0.0000 0.0000
vn 1.0000 0.0000 0.0000
vn 0.0000 -1.0000 0.0000
@ -184,25 +191,25 @@ f 10/40/4 40/39/4 37/60/4 15/61/4
f 52/34/4 40/39/4 36/17/4 55/56/4
f 3/62/3 42/63/3 35/64/3 21/65/3
f 21/65/5 35/64/5 34/66/5 29/67/5
f 9/19/6 2/68/6 33/69/6 39/70/6
f 1/71/6 32/72/6 33/69/6 2/68/6
f 59/73/6 32/72/6 31/74/6 56/75/6
f 58/76/6 57/77/6 6/11/6 12/38/6
f 59/73/6 5/12/6 6/11/6 57/77/6
f 32/72/6 1/71/6 27/78/6 31/74/6
f 3/79/5 4/14/5 41/13/5 42/80/5
f 9/68/6 2/69/6 33/70/6 39/71/6
f 1/72/6 32/73/6 33/70/6 2/69/6
f 59/74/6 32/73/6 31/75/6 56/76/6
f 58/77/6 57/78/6 6/79/6 12/80/6
f 59/74/6 5/81/6 6/79/6 57/78/6
f 32/73/6 1/72/6 27/82/6 31/75/6
f 3/83/5 4/14/5 41/13/5 42/84/5
f 23/9/2 7/43/2 8/21/2 24/10/2
f 8/21/2 7/43/2 48/55/2 14/32/2
f 44/81/5 48/55/5 49/54/5 43/82/5
f 34/66/5 35/64/5 51/83/5 50/84/5
f 17/48/1 50/84/1 51/83/1 18/45/1
f 18/45/3 51/83/3 35/85/3 42/86/3 20/52/3
f 32/72/6 59/73/6 57/77/6 33/69/6
f 39/70/6 33/69/6 57/77/6 58/76/6
f 5/12/6 59/73/6 56/75/6 28/49/6
f 11/35/4 52/34/4 55/56/4 26/87/4
f 14/32/5 53/58/5 54/59/5 16/33/5
f 26/87/4 55/56/4 58/57/4 12/88/4
f 44/85/5 48/86/5 49/87/5 43/88/5
f 34/66/5 35/64/5 51/89/5 50/90/5
f 17/48/1 50/90/1 51/89/1 18/45/1
f 18/45/3 51/89/3 35/91/3 42/92/3 20/52/3
f 32/73/6 59/74/6 57/78/6 33/70/6
f 39/71/6 33/70/6 57/78/6 58/77/6
f 5/81/6 59/74/6 56/76/6 28/93/6
f 11/35/4 52/34/4 55/56/4 26/94/4
f 14/95/5 53/58/5 54/59/5 16/96/5
f 26/94/4 55/56/4 58/57/4 12/97/4
f 40/39/4 52/34/4 54/37/4 37/60/4
f 46/89/5 45/90/5 38/27/5 53/58/5 44/81/5
f 14/32/5 48/55/5 44/81/5 53/58/5
f 46/8/5 45/7/5 38/27/5 53/58/5 44/85/5
f 14/95/5 48/86/5 44/85/5 53/58/5

View File

@ -0,0 +1,162 @@
# Blender v2.93.5 OBJ File: 'furniture.blend'
# www.blender.org
o Cabinet_counter_corner_outside_Cube.038
v 0.500000 -0.375000 0.500000
v 0.500000 0.375000 0.500000
v -0.375000 -0.375000 0.500000
v -0.375000 0.375000 0.500000
v -0.250000 -0.375000 0.500000
v -0.250000 0.375000 0.500000
v 0.500000 -0.500000 0.500000
v -0.250000 0.375000 -0.375000
v -0.250000 -0.500000 0.500000
v -0.250000 -0.500000 0.500000
v 0.500000 -0.375000 -0.375000
v 0.500000 0.375000 -0.375000
v -0.375000 -0.375000 -0.250000
v -0.250000 -0.375000 -0.375000
v -0.375000 0.375000 -0.375000
v -0.375000 -0.375000 -0.375000
v -0.375000 0.375000 -0.250000
v -0.250000 -0.375000 -0.250000
v 0.500000 -0.375000 -0.250000
v 0.500000 0.375000 -0.250000
v 0.500000 -0.500000 -0.250000
v -0.250000 -0.500000 -0.250000
v 0.500000 -0.500000 -0.250000
v 0.406250 0.312500 -0.437500
v 0.406250 -0.312500 -0.437500
v -0.156250 -0.312500 -0.437500
v -0.156250 0.312500 -0.437500
v 0.406250 0.312500 -0.375000
v 0.406250 -0.312500 -0.375000
v -0.156250 0.312500 -0.375000
v -0.156250 -0.312500 -0.375000
v -0.375000 -0.312500 0.406250
v -0.375000 0.312500 0.406250
v -0.375000 -0.312500 -0.156250
v -0.375000 0.312500 -0.156250
v -0.437500 0.312500 0.406250
v -0.437500 -0.312500 0.406250
v -0.437500 -0.312500 -0.156250
v -0.437500 0.312500 -0.156250
v 0.500000 0.375000 0.500000
v -0.500000 0.500000 -0.500000
v -0.500000 0.375000 -0.500000
v -0.500000 0.500000 0.500000
v -0.500000 0.375000 0.500000
v 0.500000 0.500000 0.500000
v 0.500000 0.375000 -0.500000
v 0.500000 0.500000 -0.500000
vt 0.351562 0.812500
vt 0.351562 1.000000
vt 0.320312 1.000000
vt 0.320312 0.812500
vt 0.734375 0.812500
vt 0.765625 0.812500
vt 0.765625 1.000000
vt 0.734375 1.000000
vt 0.539062 0.812500
vt 0.539062 1.000000
vt 0.351562 0.781250
vt 0.539062 0.781250
vt 0.812500 0.562500
vt 0.812500 0.750000
vt 0.781250 0.750000
vt 0.781250 0.562500
vt 0.781250 0.968750
vt 0.781250 0.937500
vt 0.812500 0.937500
vt 0.812500 0.968750
vt 1.000000 0.968750
vt 1.000000 0.937500
vt 0.546875 0.812500
vt 0.546875 0.781250
vt 0.734375 0.781250
vt 1.000000 0.562500
vt 0.812500 0.531250
vt 1.000000 0.531250
vt 0.812500 0.750000
vt 1.000000 0.750000
vt 1.000000 0.750000
vt 0.546875 1.000000
vt 1.000000 1.000000
vt 0.812500 1.000000
vt 0.812500 0.500000
vt 1.000000 0.500000
vt 0.367188 0.750000
vt 0.367188 0.593750
vt 0.382812 0.593750
vt 0.382812 0.750000
vt 0.539062 0.593750
vt 0.539062 0.750000
vt 0.523438 0.750000
vt 0.523438 0.593750
vt 0.523438 0.765625
vt 0.382812 0.765625
vt 0.382812 0.578125
vt 0.523438 0.578125
vt 0.703125 0.593750
vt 0.703125 0.750000
vt 0.562500 0.750000
vt 0.562500 0.593750
vt 0.562500 0.578125
vt 0.703125 0.578125
vt 0.703125 0.765625
vt 0.562500 0.765625
vt 0.718750 0.593750
vt 0.718750 0.750000
vt 0.546875 0.750000
vt 0.546875 0.593750
vt 0.281250 0.750000
vt 0.312500 0.750000
vt 0.312500 1.000000
vt 0.281250 1.000000
vt 0.281250 0.437500
vt 0.281250 0.468750
vt 0.031250 0.468750
vt 0.031250 0.437500
vt 0.031250 0.750000
vt 0.031250 0.718750
vt 0.281250 0.718750
vt 0.031250 1.000000
vt 0.000000 1.000000
vt 0.000000 0.750000
vn 0.0000 0.0000 1.0000
vn 1.0000 0.0000 0.0000
vn -1.0000 0.0000 0.0000
vn 0.0000 -1.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 0.0000 1.0000 0.0000
s off
f 5/1/1 6/2/1 4/3/1 3/4/1
f 19/5/2 11/6/2 12/7/2 20/8/2
f 1/9/1 2/10/1 6/2/1 5/1/1
f 1/9/1 5/1/1 9/11/1 7/12/1
f 13/13/3 17/14/3 15/15/3 16/16/3
f 13/17/4 16/18/4 14/19/4 18/20/4
f 19/21/4 18/20/4 14/19/4 11/22/4
f 19/5/2 1/23/2 7/24/2 21/25/2
f 3/26/4 13/13/4 18/27/4 5/28/4
f 15/15/5 8/29/5 14/19/5 16/18/5
f 12/30/5 11/22/5 14/19/5 8/29/5
f 3/26/3 4/31/3 17/14/3 13/13/3
f 1/23/2 19/5/2 20/8/2 2/32/2
f 18/20/5 19/21/5 23/33/5 22/34/5
f 5/28/3 18/27/3 22/35/3 10/36/3
f 28/37/2 29/38/2 25/39/2 24/40/2
f 31/41/3 30/42/3 27/43/3 26/44/3
f 30/45/6 28/46/6 24/40/6 27/43/6
f 29/47/4 31/48/4 26/44/4 25/39/4
f 26/44/5 27/43/5 24/40/5 25/39/5
f 37/49/3 36/50/3 39/51/3 38/52/3
f 34/53/4 32/54/4 37/49/4 38/52/4
f 33/55/6 35/56/6 39/51/6 36/50/6
f 32/57/1 33/58/1 36/50/1 37/49/1
f 35/59/5 34/60/5 38/52/5 39/51/5
f 42/61/5 41/62/5 47/63/5 46/64/5
f 46/65/2 47/66/2 45/67/2 40/68/2
f 44/69/3 43/70/3 41/71/3 42/61/3
f 40/72/1 45/73/1 43/74/1 44/69/1
f 42/61/4 46/64/4 40/72/4 44/69/4
f 47/66/6 41/71/6 43/70/6 45/67/6

View File

@ -1,235 +0,0 @@
# Blender v2.93.5 OBJ File: 'furniture.blend'
# www.blender.org
o Cabinet_counter_corner_outside_Cube.038
v 0.500000 -0.375000 0.500000
v 0.500000 0.375000 0.500000
v -0.375000 -0.375000 0.500000
v -0.375000 0.375000 0.500000
v 0.500000 0.375000 -0.500000
v -0.375000 0.375000 -0.500000
v 0.500000 0.500000 0.500000
v -0.375000 0.500000 0.500000
v -0.375000 0.500000 -0.500000
v 0.500000 0.500000 -0.500000
v -0.500000 0.375000 0.500000
v -0.500000 0.375000 -0.500000
v -0.500000 0.500000 0.500000
v -0.500000 0.500000 -0.500000
v -0.250000 -0.375000 0.500000
v -0.250000 0.375000 0.500000
v -0.250000 0.375000 -0.500000
v -0.250000 0.500000 0.500000
v -0.250000 0.500000 -0.500000
v 0.500000 -0.500000 0.500000
v -0.250000 0.375000 -0.375000
v -0.250000 -0.500000 0.500000
v 0.500000 0.500000 -0.250000
v -0.250000 -0.500000 0.500000
v 0.500000 -0.375000 -0.375000
v 0.500000 0.375000 -0.375000
v -0.375000 -0.375000 -0.250000
v -0.250000 -0.375000 -0.375000
v -0.250000 0.500000 -0.375000
v -0.500000 0.500000 -0.375000
v -0.500000 0.375000 -0.375000
v 0.500000 0.500000 -0.375000
v -0.375000 0.500000 -0.375000
v -0.375000 0.375000 -0.375000
v -0.375000 -0.375000 -0.375000
v -0.375000 0.500000 -0.250000
v -0.375000 0.375000 -0.250000
v -0.250000 -0.375000 -0.250000
v 0.500000 -0.375000 -0.250000
v -0.250000 0.500000 -0.250000
v -0.500000 0.500000 -0.250000
v -0.500000 0.375000 -0.250000
v 0.500000 0.375000 -0.250000
v 0.500000 -0.500000 -0.250000
v -0.250000 -0.500000 -0.250000
v 0.500000 -0.500000 -0.250000
v 0.406250 0.312500 -0.437500
v 0.406250 -0.312500 -0.437500
v -0.156250 -0.312500 -0.437500
v -0.156250 0.312500 -0.437500
v 0.406250 0.312500 -0.375000
v 0.406250 -0.312500 -0.375000
v -0.156250 0.312500 -0.375000
v -0.156250 -0.312500 -0.375000
v -0.375000 -0.312500 0.406250
v -0.375000 0.312500 0.406250
v -0.375000 -0.312500 -0.156250
v -0.375000 0.312500 -0.156250
v -0.437500 0.312500 0.406250
v -0.437500 -0.312500 0.406250
v -0.437500 -0.312500 -0.156250
v -0.437500 0.312500 -0.156250
vt 0.828125 0.062500
vt 0.828125 0.437500
vt 0.890625 0.437500
vt 0.890625 0.062500
vt 0.375000 1.000000
vt 0.375000 0.937500
vt 0.250000 0.937500
vt 0.250000 1.000000
vt 0.125000 0.375000
vt 0.500000 0.375000
vt 0.500000 0.437500
vt 0.125000 0.437500
vt 0.125000 0.625000
vt 0.500000 0.625000
vt 0.500000 1.000000
vt 0.125000 1.000000
vt 0.875000 0.937500
vt 0.937500 0.937500
vt 0.937500 1.000000
vt 0.875000 1.000000
vt 0.875000 0.937500
vt 0.546875 0.937500
vt 0.546875 1.000000
vt 0.875000 1.000000
vt 0.500000 0.500000
vt 0.125000 0.500000
vt 0.937500 0.937500
vt 0.937500 1.000000
vt 1.000000 1.000000
vt 1.000000 0.937500
vt 1.000000 0.937500
vt 1.000000 1.000000
vt 0.062500 0.562500
vt 0.000000 0.562500
vt 0.000000 0.500000
vt 0.062500 0.500000
vt 0.500000 0.937500
vt 0.500000 1.000000
vt 0.125000 0.562500
vt 0.500000 0.562500
vt 0.937500 0.062500
vt 1.000000 0.062500
vt 1.000000 0.437500
vt 0.937500 0.437500
vt 0.500000 0.062500
vt 0.500000 0.437500
vt 0.828125 0.000000
vt 0.500000 0.000000
vt 0.625000 0.125000
vt 0.625000 0.500000
vt 0.562500 0.500000
vt 0.562500 0.125000
vt 0.000000 0.375000
vt 0.062500 0.375000
vt 0.062500 0.437500
vt 0.000000 0.437500
vt 0.000000 0.625000
vt 0.062500 0.625000
vt 0.062500 1.000000
vt 0.000000 1.000000
vt 0.562500 0.062500
vt 0.625000 0.062500
vt 0.562500 0.062500
vt 0.562500 0.125000
vt 0.937500 0.125000
vt -0.000000 0.937500
vt 0.062500 0.437500
vt -0.000000 0.437500
vt -0.000000 0.500000
vt 0.062500 0.500000
vt 0.609375 0.062500
vt 0.609375 -0.000000
vt 0.937500 -0.000000
vt -0.000000 1.000000
vt 0.062500 1.000000
vt 1.000000 0.125000
vt 1.000000 0.062500
vt 0.500000 0.500000
vt 0.562500 0.500000
vt 0.500000 0.125000
vt 0.937500 0.500000
vt 1.000000 0.500000
vt 0.609375 0.437500
vt 0.500000 0.937500
vt 0.937500 -0.000000
vt 0.562500 -0.000000
vt 0.625000 0.000000
vt 1.000000 0.000000
vt 0.390625 0.343750
vt 0.078125 0.343750
vt 0.078125 0.312500
vt 0.390625 0.312500
vt 0.078125 0.000000
vt 0.390625 0.000000
vt 0.390625 0.031250
vt 0.078125 0.031250
vt 0.421875 0.031250
vt 0.421875 0.312500
vt 0.046875 0.312500
vt 0.046875 0.031250
vt 0.078125 0.031250
vt 0.390625 0.031250
vt 0.390625 0.312500
vt 0.078125 0.312500
vt 0.046875 0.312500
vt 0.046875 0.031250
vt 0.421875 0.031250
vt 0.421875 0.312500
vt 0.078125 0.000000
vt 0.390625 0.000000
vt 0.390625 0.343750
vt 0.078125 0.343750
vn 0.0000 0.0000 1.0000
vn 1.0000 0.0000 0.0000
vn 0.0000 -1.0000 0.0000
vn 0.0000 1.0000 -0.0000
vn 0.0000 0.0000 -1.0000
vn -1.0000 0.0000 -0.0000
s off
f 15/1/1 16/2/1 4/3/1 3/4/1
f 23/5/2 43/6/2 26/7/2 32/8/2
f 37/9/3 4/10/3 11/11/3 42/12/3
f 40/13/4 18/14/4 7/15/4 23/16/4
f 17/17/5 6/18/5 9/19/5 19/20/5
f 16/21/1 2/22/1 7/23/1 18/24/1
f 42/12/6 11/11/6 13/25/6 41/26/6
f 4/27/1 8/28/1 13/29/1 11/30/1
f 9/19/5 6/18/5 12/31/5 14/32/5
f 33/33/4 9/34/4 14/35/4 30/36/4
f 4/27/1 16/21/1 18/24/1 8/28/1
f 5/37/5 17/17/5 19/20/5 10/38/5
f 36/39/4 8/40/4 18/14/4 40/13/4
f 39/41/2 25/42/2 26/43/2 43/44/2
f 1/45/1 2/46/1 16/2/1 15/1/1
f 1/45/1 15/1/1 22/47/1 20/48/1
f 27/49/6 37/50/6 34/51/6 35/52/6
f 6/53/3 34/54/3 31/55/3 12/56/3
f 19/57/4 29/58/4 32/59/4 10/60/4
f 12/56/6 31/55/6 30/36/6 14/35/6
f 36/39/4 33/33/4 30/36/4 41/26/4
f 9/34/4 33/33/4 29/58/4 19/57/4
f 27/49/3 35/52/3 28/61/3 38/62/3
f 39/41/3 38/63/3 28/64/3 25/65/3
f 32/8/2 26/7/2 5/66/2 10/60/2
f 34/67/3 6/68/3 17/69/3 21/70/3
f 39/41/2 1/71/2 20/72/2 44/73/2
f 17/69/3 5/74/3 26/75/3 21/70/3
f 3/76/3 27/49/3 38/62/3 15/77/3
f 34/78/5 21/79/5 28/64/5 35/80/5
f 26/81/5 25/65/5 28/64/5 21/79/5
f 8/40/4 36/39/4 41/26/4 13/25/4
f 3/76/6 4/82/6 37/50/6 27/49/6
f 1/71/2 39/41/2 43/44/2 2/83/2
f 33/33/4 36/39/4 40/13/4 29/58/4
f 31/55/6 42/12/6 41/26/6 30/36/6
f 29/58/4 40/13/4 23/16/4 32/59/4
f 34/54/3 37/9/3 42/12/3 31/55/3
f 7/15/2 2/84/2 43/6/2 23/5/2
f 38/63/5 39/41/5 46/85/5 45/86/5
f 15/77/6 38/62/6 45/87/6 24/88/6
f 51/89/2 52/90/2 48/91/2 47/92/2
f 54/93/6 53/94/6 50/95/6 49/96/6
f 53/97/4 51/98/4 47/92/4 50/95/4
f 52/99/3 54/100/3 49/96/3 48/91/3
f 49/96/5 50/95/5 47/92/5 48/91/5
f 60/101/6 59/102/6 62/103/6 61/104/6
f 57/105/3 55/106/3 60/101/3 61/104/3
f 56/107/4 58/108/4 62/103/4 59/102/4
f 55/109/1 56/110/1 59/102/1 60/101/1
f 58/111/5 57/112/5 61/104/5 62/103/5

View File

@ -1,6 +1,6 @@
# Blender v2.93.5 OBJ File: 'furniture.blend'
# www.blender.org
o Cabinet_counter.001_Cube.047
o Cabinet_counter_with_sink_Cube.047
v -0.500000 -0.375000 0.500000
v -0.500000 0.375000 0.500000
v -0.500000 -0.375000 -0.375000
@ -119,123 +119,120 @@ v -0.031250 0.812500 0.031250
v 0.031250 0.812500 0.031250
v -0.031250 0.875000 0.031250
v 0.031250 0.875000 0.031250
vt 0.625000 0.562500
vt 0.625000 0.937500
vt 0.562500 0.937500
vt 0.562500 0.562500
vt 0.562500 0.125000
vt 0.562500 0.500000
vt 0.500000 0.500000
vt 0.500000 0.125000
vt 0.937500 0.562500
vt 0.937500 0.937500
vt 1.000000 0.937500
vt 1.000000 0.562500
vt 0.062500 1.000000
vt 0.000000 1.000000
vt 0.000000 0.937500
vt 0.062500 0.937500
vt 0.062500 0.500000
vt -0.000000 0.500000
vt -0.000000 0.437500
vt 0.062500 0.437500
vt 0.625000 0.937500
vt 0.562500 0.937500
vt 0.562500 1.000000
vt 0.625000 1.000000
vt 0.937500 0.937500
vt 1.000000 0.937500
vt 1.000000 1.000000
vt 0.937500 1.000000
vt 0.062500 1.000000
vt -0.000000 1.000000
vt -0.000000 0.937500
vt 0.062500 0.937500
vt 0.562500 1.000000
vt 0.500000 1.000000
vt 0.500000 0.937500
vt 0.500000 0.937500
vt 0.500000 1.000000
vt 0.437500 0.875000
vt 0.500000 0.875000
vt 0.500000 0.937500
vt 0.437500 0.937500
vt 0.625000 1.000000
vt 0.937500 1.000000
vt 0.062500 0.875000
vt -0.000000 0.875000
vt -0.000000 0.812500
vt 0.062500 0.812500
vt 0.562500 0.562500
vt 0.625000 0.562500
vt 0.937500 0.562500
vt 0.500000 0.062500
vt 0.562500 0.062500
vt 1.000000 0.500000
vt 0.937500 0.500000
vt 0.625000 0.500000
vt 0.937500 0.500000
vt 0.500000 0.000000
vt 0.562500 0.000000
vt 0.031250 0.031250
vt 0.343750 0.031250
vt 0.343750 0.234375
vt 0.578125 0.468750
vt 0.578125 0.656250
vt 0.546875 0.656250
vt 0.546875 0.468750
vt 0.031250 0.234375
vt 0.000000 0.234375
vt 0.000000 0.031250
vt 0.375000 0.031250
vt 0.375000 0.234375
vt 0.031250 0.000000
vt 0.343750 0.000000
vt 0.343750 0.265625
vt 0.031250 0.265625
vt 0.031250 0.140625
vt 0.343750 0.140625
vt 0.343750 0.343750
vt 0.031250 0.343750
vt 0.000000 0.343750
vt 0.000000 0.140625
vt 0.375000 0.140625
vt 0.375000 0.343750
vt 0.031250 0.109375
vt 0.343750 0.109375
vt 0.343750 0.375000
vt 0.031250 0.375000
vt 0.937500 1.000000
vt 0.937500 0.937500
vt 1.000000 1.000000
vt 0.937500 0.562500
vt 0.562500 0.562500
vt 0.500000 0.562500
vt 0.500000 0.500000
vt 0.562500 0.500000
vt 0.937500 0.500000
vt 0.562500 0.937500
vt 0.500000 0.937500
vt 0.500000 1.000000
vt 0.562500 1.000000
vt 1.000000 0.062500
vt 0.937500 0.062500
vt 0.937500 0.000000
vt 1.000000 0.000000
vt 1.000000 0.125000
vt 0.937500 0.125000
vt 0.437500 1.000000
vt 0.437500 0.500000
vt 0.437500 0.437500
vt 0.437500 1.000000
vt 0.437500 0.937500
vt 1.000000 0.500000
vt 0.937500 0.500000
vt 0.500000 1.000000
vt 0.500000 0.500000
vt 0.500000 0.437500
vt 0.500000 1.000000
vt 0.437500 0.812500
vt 0.500000 0.812500
vt 1.000000 0.562500
vt 1.000000 0.500000
vt 0.625000 0.500000
vt 0.031250 0.421875
vt -0.000000 0.421875
vt -0.000000 0.234375
vt 0.734375 0.468750
vt 0.734375 0.656250
vt 0.765625 0.656250
vt 0.765625 0.468750
vt 0.031250 1.000000
vt 0.000000 1.000000
vt 0.000000 0.968750
vt 0.031250 0.968750
vt 0.031250 0.718750
vt 0.000000 0.718750
vt 0.000000 0.687500
vt 0.031250 0.687500
vt 0.578125 0.656250
vt 0.546875 0.656250
vt 0.546875 0.687500
vt 0.578125 0.687500
vt 0.734375 0.656250
vt 0.765625 0.656250
vt 0.765625 0.687500
vt 0.734375 0.687500
vt 0.000000 0.937500
vt 0.031250 0.937500
vt 0.546875 0.687500
vt 0.515625 0.687500
vt 0.515625 0.656250
vt 0.515625 0.656250
vt 0.515625 0.687500
vt 0.218750 0.906250
vt 0.250000 0.906250
vt 0.250000 0.937500
vt 0.218750 0.937500
vt 0.578125 0.687500
vt 0.734375 0.687500
vt 0.031250 0.906250
vt 0.000000 0.906250
vt 0.000000 0.875000
vt 0.031250 0.875000
vt 0.546875 0.468750
vt 0.578125 0.468750
vt 0.734375 0.468750
vt -0.000000 0.203125
vt 0.031250 0.203125
vt 0.765625 0.437500
vt 0.734375 0.437500
vt 0.578125 0.437500
vt 0.734375 0.437500
vt -0.000000 0.171875
vt 0.031250 0.171875
vt 0.984375 0.828125
vt 0.984375 0.984375
vt 0.882812 0.984375
vt 0.882812 0.828125
vt 0.882812 0.812500
vt 0.984375 0.812500
vt 0.984375 1.000000
vt 0.882812 1.000000
vt 1.000000 0.828125
vt 1.000000 0.984375
vt 0.867188 0.984375
vt 0.867188 0.828125
vt 0.843750 0.828125
vt 0.843750 0.984375
vt 0.742188 0.984375
vt 0.742188 0.828125
vt 0.742188 0.812500
vt 0.843750 0.812500
vt 0.843750 1.000000
vt 0.742188 1.000000
vt 0.859375 0.828125
vt 0.859375 0.984375
vt 0.726562 0.984375
vt 0.726562 0.828125
vt 0.218750 0.687500
vt 0.218750 0.656250
vt 0.250000 0.656250
vt 0.250000 0.687500
vt 0.218750 0.468750
vt 0.250000 0.468750
vt 0.031250 0.468750
vt -0.000000 0.468750
vt -0.000000 0.437500
vt 0.031250 0.437500
vt 0.218750 0.437500
vt 0.031250 0.656250
vt -0.000000 0.656250
vt 0.250000 0.203125
vt 0.218750 0.203125
vt 0.218750 0.171875
vt 0.250000 0.171875
vt 0.250000 0.234375
vt 0.218750 0.234375
vt 0.218750 0.968750
vt 0.218750 0.718750
vt 0.218750 1.000000
vt 0.250000 0.421875
vt 0.218750 0.421875
vt 0.250000 1.000000
vt 0.250000 0.968750
vt 0.250000 0.718750
vt 0.218750 0.875000
vt 0.250000 0.875000
vt 0.250000 0.437500
vt 0.765625 0.468750
vt 0.765625 0.437500
vt 0.578125 0.437500
vt 0.765625 0.687500
vt 0.562500 1.000000
vt 0.500000 1.000000
vt 0.500000 0.937500
@ -262,65 +259,65 @@ vt 0.562500 0.250000
vt 0.562500 0.312500
vt 0.500000 0.812500
vt 0.187500 0.812500
vt 0.453125 0.156250
vt 0.296875 0.156250
vt 0.296875 0.125000
vt 0.453125 0.062500
vt 0.296875 0.062500
vt 0.296875 0.031250
vt 0.453125 0.031250
vt 0.296875 0.000000
vt 0.453125 0.000000
vt 0.453125 0.125000
vt 0.296875 0.125000
vt 0.296875 0.093750
vt 0.453125 0.093750
vt 0.453125 0.218750
vt 0.296875 0.218750
vt 0.296875 0.187500
vt 0.453125 0.187500
vt 0.171875 0.937500
vt 0.125000 0.937500
vt 0.125000 0.906250
vt 0.171875 0.906250
vt 0.265625 0.187500
vt 0.265625 0.156250
vt 0.125000 0.875000
vt 0.171875 0.875000
vt 0.171875 1.000000
vt 0.125000 1.000000
vt 0.125000 0.968750
vt 0.171875 0.968750
vt 0.093750 1.000000
vt 0.093750 0.968750
vt 0.078125 0.906250
vt 0.031250 0.906250
vt 0.031250 0.875000
vt 0.078125 0.875000
vt 0.078125 1.000000
vt 0.031250 1.000000
vt 0.031250 0.968750
vt 0.078125 0.968750
vt 0.031250 0.937500
vt 0.078125 0.937500
vt 0.000000 0.875000
vt 0.000000 0.906250
vt 0.031250 0.125000
vt 0.031250 0.156250
vt 0.000000 0.156250
vt 0.000000 0.125000
vt 0.031250 0.187500
vt 0.218750 0.156250
vt 0.218750 0.187500
vt 0.265625 0.218750
vt 0.265625 0.125000
vt 0.218750 0.218750
vt 0.250000 0.187500
vt 0.250000 0.218750
vt 0.031250 0.218750
vt 0.500000 0.062500
vt 0.531250 0.062500
vt 0.531250 0.109375
vt 0.500000 0.109375
vt 0.265625 0.093750
vt 0.265625 0.062500
vt 0.531250 0.140625
vt 0.500000 0.140625
vt 0.500000 0.000000
vt 0.531250 0.000000
vt 0.531250 0.031250
vt 0.500000 0.031250
vt 0.578125 0.000000
vt 0.578125 0.031250
vt 0.671875 0.031250
vt 0.640625 0.031250
vt 0.640625 -0.000000
vt 0.671875 -0.000000
vt 0.671875 0.140625
vt 0.640625 0.140625
vt 0.640625 0.109375
vt 0.671875 0.109375
vt 0.640625 0.062500
vt 0.671875 0.062500
vt 0.593750 -0.000000
vt 0.593750 0.031250
vt 0.031250 0.031250
vt 0.031250 0.062500
vt -0.000000 0.062500
vt -0.000000 0.031250
vt 0.031250 0.093750
vt 0.218750 0.062500
vt 0.218750 0.093750
vt 0.265625 0.125000
vt 0.265625 0.031250
vt 0.218750 0.125000
vt 0.250000 0.093750
vt 0.250000 0.125000
vt 0.031250 0.125000
vt 0.031250 0.000000
vt 0.218750 0.000000
vt 0.218750 0.031250
vn -1.0000 0.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
vn 0.0000 -1.0000 0.0000
vn 0.0000 1.0000 0.0000
vn 0.0000 0.0000 1.0000
g Cabinet_counter.001_Cube.047_Cabinet_counter
g Cabinet_counter_with_sink_Cube.047_Cabinet_counter
s off
f 21/1/1 22/2/1 4/3/1 3/4/1
f 61/5/2 55/6/2 8/7/2 7/8/2
@ -329,94 +326,94 @@ f 44/13/4 4/14/4 13/15/4 47/16/4
f 75/17/5 72/18/5 9/19/5 46/20/5
f 24/21/3 8/22/3 11/23/3 26/24/3
f 70/25/1 2/26/1 9/27/1 72/28/1
f 47/29/2 13/30/2 15/31/2 48/32/2
f 4/3/1 10/33/1 15/34/1 13/35/1
f 11/23/3 8/22/3 14/36/3 16/37/3
f 56/38/5 11/39/5 16/40/5 58/41/5
f 4/3/1 22/2/1 25/42/1 10/33/1
f 68/10/3 24/21/3 26/24/3 69/43/3
f 45/44/5 10/45/5 25/46/5 49/47/5
f 7/48/3 8/22/3 24/21/3 23/49/3
f 67/50/1 70/25/1 22/2/1 21/1/1
f 61/5/4 7/8/4 23/51/4 63/52/4
f 71/9/3 5/12/3 28/53/3 74/54/3
f 67/50/1 21/1/1 29/55/1 73/56/1
f 63/52/2 23/51/2 30/57/2 64/58/2
f 32/59/2 31/60/2 34/61/2 33/62/2
f 19/63/4 17/64/4 32/59/4 33/62/4
f 18/65/5 20/66/5 34/61/5 31/60/5
f 17/67/1 18/68/1 31/60/1 32/59/1
f 20/69/3 19/70/3 33/62/3 34/61/3
f 40/71/2 39/72/2 42/73/2 41/74/2
f 37/75/4 35/76/4 40/71/4 41/74/4
f 36/77/5 38/78/5 42/73/5 39/72/5
f 35/79/1 36/80/1 39/72/1 40/71/1
f 38/81/3 37/82/3 41/74/3 42/73/3
f 62/83/6 65/84/6 6/11/6 12/85/6
f 60/86/6 5/12/6 6/11/6 65/84/6
f 47/16/2 13/15/2 15/29/2 48/30/2
f 4/3/1 10/31/1 15/32/1 13/33/1
f 11/23/3 8/22/3 14/34/3 16/35/3
f 56/36/5 11/37/5 16/38/5 58/39/5
f 4/3/1 22/2/1 25/40/1 10/31/1
f 68/10/3 24/21/3 26/24/3 69/41/3
f 45/42/5 10/43/5 25/44/5 49/45/5
f 7/46/3 8/22/3 24/21/3 23/47/3
f 67/48/1 70/25/1 22/2/1 21/1/1
f 61/5/4 7/8/4 23/49/4 63/50/4
f 71/9/3 5/12/3 28/51/3 74/52/3
f 67/48/1 21/1/1 29/53/1 73/54/1
f 63/50/2 23/49/2 30/55/2 64/56/2
f 32/57/2 31/58/2 34/59/2 33/60/2
f 19/61/4 17/62/4 32/57/4 33/60/4
f 18/63/5 20/64/5 34/59/5 31/58/5
f 17/65/1 18/66/1 31/58/1 32/57/1
f 20/67/3 19/68/3 33/60/3 34/59/3
f 40/69/2 39/70/2 42/71/2 41/72/2
f 37/73/4 35/74/4 40/69/4 41/72/4
f 36/75/5 38/76/5 42/71/5 39/70/5
f 35/77/1 36/78/1 39/70/1 40/69/1
f 38/79/3 37/80/3 41/72/3 42/71/3
f 62/81/6 65/82/6 6/83/6 12/84/6
f 60/85/6 5/86/6 6/83/6 65/82/6
f 53/87/6 1/88/6 27/89/6 54/90/6
f 60/86/6 53/87/6 54/90/6 66/91/6
f 60/85/6 53/87/6 54/90/6 66/91/6
f 1/88/6 53/87/6 52/92/6 2/93/6
f 9/94/6 2/93/6 52/92/6 46/95/6
f 21/96/2 50/97/2 51/98/2 29/99/2
f 3/100/4 43/101/4 50/97/4 21/96/4
f 10/45/5 45/44/5 48/32/5 15/31/5
f 57/102/2 47/29/2 48/32/2 58/41/2
f 76/103/5 75/17/5 46/20/5 62/104/5
f 55/105/4 44/13/4 47/16/4 57/106/4
f 3/100/2 4/107/2 44/108/2 43/101/2
f 8/109/4 55/105/4 57/106/4 14/36/4
f 69/110/5 76/103/5 62/104/5 12/111/5
f 14/112/2 57/102/2 58/41/2 16/40/2
f 11/39/5 56/38/5 59/113/5 26/114/5
f 5/12/6 60/86/6 66/91/6 28/53/6
f 53/87/6 60/86/6 65/84/6 52/92/6
f 46/95/6 52/92/6 65/84/6 62/83/6
f 50/97/2 63/52/2 64/58/2 51/98/2
f 43/101/4 61/5/4 63/52/4 50/97/4
f 45/44/5 56/38/5 58/41/5 48/32/5
f 43/101/2 44/108/2 55/6/2 61/5/2
f 26/114/5 59/113/5 76/103/5 69/110/5
f 1/115/1 67/50/1 73/56/1 27/116/1
f 23/49/3 71/9/3 74/54/3 30/117/3
f 1/115/1 2/26/1 70/25/1 67/50/1
f 6/11/3 68/10/3 69/43/3 12/85/3
f 22/2/1 70/25/1 72/28/1 25/42/1
f 49/47/5 25/46/5 72/18/5 75/17/5
f 23/49/3 24/21/3 68/10/3 71/9/3
g Cabinet_counter.001_Cube.047_KitchenSink
f 45/118/3 49/119/3 78/120/3 77/121/3
f 49/119/3 75/122/3 81/123/3 78/120/3
f 79/124/5 77/125/5 78/126/5 80/127/5
f 82/128/1 80/129/1 84/130/1 86/131/1
f 75/132/2 76/133/2 82/134/2 81/135/2
f 56/136/6 45/137/6 77/125/6 79/124/6
f 76/138/1 59/139/1 80/129/1 82/128/1
f 59/139/1 56/140/1 79/141/1 80/129/1
f 84/130/5 83/142/5 85/143/5 86/131/5
f 81/135/2 82/134/2 86/131/2 85/143/2
f 78/120/3 81/123/3 85/143/3 83/142/3
f 80/127/6 78/126/6 83/142/6 84/130/6
f 87/144/1 88/145/1 90/146/1 89/147/1
f 89/147/2 90/146/2 94/148/2 93/149/2
f 93/150/3 94/151/3 92/152/3 91/153/3
f 91/153/6 92/152/6 88/145/6 87/144/6
f 95/154/1 96/155/1 98/156/1 97/157/1
f 88/145/6 92/152/6 114/158/6 111/159/6
f 97/157/2 98/156/2 102/160/2 101/161/2
f 101/162/3 102/163/3 100/164/3 99/165/3
f 99/165/6 100/164/6 96/155/6 95/154/6
f 102/163/5 98/166/5 96/167/5 100/164/5
f 103/168/1 104/169/1 106/170/1 105/171/1
f 105/172/2 106/173/2 110/174/2 109/175/2
f 109/175/3 110/174/3 108/176/3 107/177/3
f 107/177/6 108/176/6 104/169/6 103/168/6
f 110/178/5 106/170/5 104/169/5 108/179/5
f 113/180/5 112/181/5 111/182/5 114/183/5
f 90/184/1 112/181/1 117/185/1 115/186/1
f 92/152/3 94/151/3 113/187/3 114/158/3
f 90/146/1 88/145/1 111/159/1 112/188/1
f 116/189/2 115/186/2 117/190/2 118/191/2
f 94/192/4 90/184/4 115/186/4 116/189/4
f 113/180/3 94/193/3 116/194/3 118/195/3
f 112/181/5 113/180/5 118/195/5 117/185/5
f 9/19/6 2/93/6 52/92/6 46/20/6
f 21/94/2 50/95/2 51/96/2 29/97/2
f 3/98/4 43/99/4 50/95/4 21/94/4
f 10/43/5 45/42/5 48/30/5 15/29/5
f 57/100/2 47/16/2 48/30/2 58/39/2
f 76/101/5 75/17/5 46/20/5 62/81/5
f 55/102/4 44/13/4 47/16/4 57/100/4
f 3/98/2 4/103/2 44/104/2 43/99/2
f 8/105/4 55/102/4 57/100/4 14/106/4
f 69/107/5 76/101/5 62/81/5 12/84/5
f 14/106/2 57/100/2 58/39/2 16/38/2
f 11/37/5 56/36/5 59/108/5 26/109/5
f 5/86/6 60/85/6 66/91/6 28/110/6
f 53/87/6 60/85/6 65/82/6 52/92/6
f 46/20/6 52/92/6 65/82/6 62/81/6
f 50/95/2 63/50/2 64/56/2 51/96/2
f 43/99/4 61/5/4 63/50/4 50/95/4
f 45/42/5 56/36/5 58/39/5 48/30/5
f 43/99/2 44/104/2 55/6/2 61/5/2
f 26/109/5 59/108/5 76/101/5 69/107/5
f 1/111/1 67/48/1 73/54/1 27/112/1
f 23/47/3 71/9/3 74/52/3 30/113/3
f 1/111/1 2/26/1 70/25/1 67/48/1
f 6/11/3 68/10/3 69/41/3 12/114/3
f 22/2/1 70/25/1 72/28/1 25/40/1
f 49/45/5 25/44/5 72/18/5 75/17/5
f 23/47/3 24/21/3 68/10/3 71/9/3
g Cabinet_counter_with_sink_Cube.047_KitchenSink
f 45/115/3 49/116/3 78/117/3 77/118/3
f 49/116/3 75/119/3 81/120/3 78/117/3
f 79/121/5 77/122/5 78/123/5 80/124/5
f 82/125/1 80/126/1 84/127/1 86/128/1
f 75/129/2 76/130/2 82/131/2 81/132/2
f 56/133/6 45/134/6 77/122/6 79/121/6
f 76/135/1 59/136/1 80/126/1 82/125/1
f 59/136/1 56/137/1 79/138/1 80/126/1
f 84/127/5 83/139/5 85/140/5 86/128/5
f 81/132/2 82/131/2 86/128/2 85/140/2
f 78/117/3 81/120/3 85/140/3 83/139/3
f 80/124/6 78/123/6 83/139/6 84/127/6
f 87/141/1 88/142/1 90/143/1 89/144/1
f 89/144/2 90/143/2 94/145/2 93/146/2
f 93/147/3 94/148/3 92/149/3 91/150/3
f 91/150/6 92/149/6 88/142/6 87/141/6
f 95/151/1 96/152/1 98/153/1 97/154/1
f 88/142/6 92/149/6 114/155/6 111/156/6
f 97/154/2 98/153/2 102/157/2 101/158/2
f 101/159/3 102/160/3 100/161/3 99/162/3
f 99/162/6 100/161/6 96/152/6 95/151/6
f 102/160/5 98/163/5 96/164/5 100/161/5
f 103/165/1 104/166/1 106/167/1 105/168/1
f 105/169/2 106/170/2 110/171/2 109/172/2
f 109/172/3 110/171/3 108/173/3 107/174/3
f 107/174/6 108/173/6 104/166/6 103/165/6
f 110/175/5 106/167/5 104/166/5 108/176/5
f 113/177/5 112/178/5 111/179/5 114/180/5
f 90/181/1 112/178/1 117/182/1 115/183/1
f 92/149/3 94/148/3 113/184/3 114/155/3
f 90/143/1 88/142/1 111/156/1 112/185/1
f 116/186/2 115/183/2 117/187/2 118/188/2
f 94/189/4 90/181/4 115/183/4 116/186/4
f 113/177/3 94/190/3 116/191/3 118/192/3
f 112/178/5 113/177/5 118/192/5 117/182/5

View File

@ -1,4 +1,4 @@
# Blender v2.82 (sub 7) OBJ File: 'furniture.blend'
# Blender v2.93.5 OBJ File: 'furniture.blend'
# www.blender.org
o Cabinet_wall_Cube.007
v -0.500000 -0.500000 0.500000
@ -25,48 +25,42 @@ v 0.031250 -0.437500 -0.250000
v 0.031250 0.437500 -0.250000
v 0.437500 -0.437500 -0.250000
v 0.437500 0.437500 -0.250000
vt 0.625000 0.500000
vt 0.625000 0.000000
vt 1.000000 0.000000
vt 1.000000 0.500000
vt 0.500000 0.000000
vt 0.500000 0.500000
vt 0.000000 0.500000
vt 0.000000 0.000000
vt 0.625000 0.500000
vt 0.625000 0.000000
vt 1.000000 0.000000
vt 1.000000 0.500000
vt 0.625000 1.000000
vt 1.000000 1.000000
vt 0.625000 1.000000
vt 0.625000 0.500000
vt 1.000000 0.500000
vt 1.000000 1.000000
vt 0.031250 0.734375
vt 0.468750 0.734375
vt 0.468750 0.531250
vt 0.031250 0.531250
vt 0.500000 0.734375
vt 0.500000 0.531250
vt 0.031250 0.765625
vt 0.468750 0.765625
vt 0.468750 0.500000
vt 0.031250 0.500000
vt 0.000000 0.531250
vt 0.000000 0.734375
vt 0.031250 0.968750
vt 0.468750 0.968750
vt 0.468750 0.765625
vt 0.031250 0.765625
vt 0.500000 0.968750
vt 0.500000 0.765625
vt 0.031250 1.000000
vt 0.468750 1.000000
vt 0.468750 0.734375
vt 0.031250 0.734375
vt 0.000000 0.765625
vt 0.000000 0.968750
vt 0.625000 0.562500
vt 0.625000 0.812500
vt 0.437500 0.812500
vt 0.437500 0.562500
vt 0.187500 0.812500
vt 0.187500 0.562500
vt 0.000000 0.812500
vt 0.000000 0.562500
vt 0.187500 0.375000
vt 0.437500 0.375000
vt 0.437500 1.000000
vt 0.187500 1.000000
vt 0.984375 0.765625
vt 0.984375 0.984375
vt 0.882812 0.984375
vt 0.882812 0.765625
vt 0.984375 1.000000
vt 0.882812 1.000000
vt 1.000000 0.765625
vt 1.000000 0.984375
vt 0.867188 0.984375
vt 0.867188 0.765625
vt 0.882812 0.750000
vt 0.984375 0.750000
vt 0.843750 0.765625
vt 0.843750 0.984375
vt 0.742188 0.984375
vt 0.742188 0.765625
vt 0.843750 1.000000
vt 0.742188 1.000000
vt 0.859375 0.765625
vt 0.859375 0.984375
vt 0.726562 0.984375
vt 0.726562 0.765625
vt 0.742188 0.750000
vt 0.843750 0.750000
vn -1.0000 0.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
@ -74,17 +68,17 @@ vn 0.0000 -1.0000 0.0000
vn 0.0000 1.0000 0.0000
s off
f 1/1/1 2/2/1 4/3/1 3/4/1
f 3/5/2 4/6/2 8/7/2 7/8/2
f 7/9/3 8/10/3 6/11/3 5/12/3
f 3/13/4 7/9/4 5/12/4 1/14/4
f 8/15/5 4/16/5 2/17/5 6/18/5
f 9/19/2 10/20/2 12/21/2 11/22/2
f 10/20/5 14/23/5 16/24/5 12/21/5
f 9/19/1 13/25/1 14/26/1 10/20/1
f 12/21/3 16/27/3 15/28/3 11/22/3
f 11/22/4 15/29/4 13/30/4 9/19/4
f 17/31/2 18/32/2 20/33/2 19/34/2
f 18/32/5 22/35/5 24/36/5 20/33/5
f 17/31/1 21/37/1 22/38/1 18/32/1
f 20/33/3 24/39/3 23/40/3 19/34/3
f 19/34/4 23/41/4 21/42/4 17/31/4
f 3/4/2 4/3/2 8/5/2 7/6/2
f 7/6/3 8/5/3 6/7/3 5/8/3
f 3/4/4 7/6/4 5/9/4 1/10/4
f 8/5/5 4/3/5 2/11/5 6/12/5
f 9/13/2 10/14/2 12/15/2 11/16/2
f 10/14/5 14/17/5 16/18/5 12/15/5
f 9/13/1 13/19/1 14/20/1 10/14/1
f 12/15/3 16/21/3 15/22/3 11/16/3
f 11/16/4 15/23/4 13/24/4 9/13/4
f 17/25/2 18/26/2 20/27/2 19/28/2
f 18/26/5 22/29/5 24/30/5 20/27/5
f 17/25/1 21/31/1 22/32/1 18/26/1
f 20/27/3 24/33/3 23/34/3 19/28/3
f 19/28/4 23/35/4 21/36/4 17/25/4

View File

@ -25,50 +25,42 @@ v 0.031250 0.000000 -0.250000
v 0.031250 0.437500 -0.250000
v 0.437500 0.000000 -0.250000
v 0.437500 0.437500 -0.250000
vt 0.625000 0.281250
vt 0.625000 0.000000
vt 1.000000 0.000000
vt 1.000000 0.281250
vt 0.500000 0.000000
vt 0.500000 0.281250
vt -0.000000 0.281250
vt 0.000000 0.000000
vt 0.625000 0.281250
vt 0.625000 0.000000
vt 1.000000 0.000000
vt 1.000000 0.281250
vt 0.625000 1.000000
vt 0.625000 0.500000
vt 1.000000 0.500000
vt 1.000000 1.000000
vt 0.625000 1.000000
vt 0.625000 0.500000
vt 1.000000 0.500000
vt 1.000000 1.000000
vt 0.031250 0.734375
vt 0.250000 0.734375
vt 0.250000 0.531250
vt 0.031250 0.531250
vt 0.281250 0.734375
vt 0.281250 0.531250
vt 0.031250 0.765625
vt 0.250000 0.765625
vt 0.250000 0.500000
vt 0.031250 0.500000
vt 0.000000 0.531250
vt 0.000000 0.734375
vt 0.031250 0.968750
vt 0.250000 0.968750
vt 0.250000 0.765625
vt 0.031250 0.765625
vt 0.281250 0.968750
vt 0.281250 0.765625
vt 0.031250 1.000000
vt 0.250000 1.000000
vt 0.250000 0.734375
vt 0.031250 0.734375
vt 0.000000 0.765625
vt 0.000000 0.968750
vt 0.625000 0.671875
vt 0.625000 0.812500
vt 0.437500 0.812500
vt 0.437500 0.671875
vt 0.187500 0.812500
vt 0.187500 0.671875
vt -0.000000 0.812500
vt -0.000000 0.671875
vt 0.187500 0.484375
vt 0.437500 0.484375
vt 0.437500 1.000000
vt 0.187500 1.000000
vt 0.984375 0.875000
vt 0.984375 0.984375
vt 0.882812 0.984375
vt 0.882812 0.875000
vt 0.984375 1.000000
vt 0.882812 1.000000
vt 1.000000 0.875000
vt 1.000000 0.984375
vt 0.867188 0.984375
vt 0.867188 0.875000
vt 0.882812 0.859375
vt 0.984375 0.859375
vt 0.843750 0.875000
vt 0.843750 0.984375
vt 0.742188 0.984375
vt 0.742188 0.875000
vt 0.843750 1.000000
vt 0.742188 1.000000
vt 0.859375 0.875000
vt 0.859375 0.984375
vt 0.726562 0.984375
vt 0.726562 0.875000
vt 0.742188 0.859375
vt 0.843750 0.859375
vn -1.0000 0.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
@ -76,17 +68,17 @@ vn 0.0000 -1.0000 0.0000
vn 0.0000 1.0000 0.0000
s off
f 1/1/1 2/2/1 4/3/1 3/4/1
f 3/5/2 4/6/2 8/7/2 7/8/2
f 7/9/3 8/10/3 6/11/3 5/12/3
f 3/13/4 7/14/4 5/15/4 1/16/4
f 8/17/5 4/18/5 2/19/5 6/20/5
f 9/21/2 10/22/2 12/23/2 11/24/2
f 10/22/5 14/25/5 16/26/5 12/23/5
f 9/21/1 13/27/1 14/28/1 10/22/1
f 12/23/3 16/29/3 15/30/3 11/24/3
f 11/24/4 15/31/4 13/32/4 9/21/4
f 17/33/2 18/34/2 20/35/2 19/36/2
f 18/34/5 22/37/5 24/38/5 20/35/5
f 17/33/1 21/39/1 22/40/1 18/34/1
f 20/35/3 24/41/3 23/42/3 19/36/3
f 19/36/4 23/43/4 21/44/4 17/33/4
f 3/4/2 4/3/2 8/5/2 7/6/2
f 7/6/3 8/5/3 6/7/3 5/8/3
f 3/4/4 7/6/4 5/9/4 1/10/4
f 8/5/5 4/3/5 2/11/5 6/12/5
f 9/13/2 10/14/2 12/15/2 11/16/2
f 10/14/5 14/17/5 16/18/5 12/15/5
f 9/13/1 13/19/1 14/20/1 10/14/1
f 12/15/3 16/21/3 15/22/3 11/16/3
f 11/16/4 15/23/4 13/24/4 9/13/4
f 17/25/2 18/26/2 20/27/2 19/28/2
f 18/26/5 22/29/5 24/30/5 20/27/5
f 17/25/1 21/31/1 22/32/1 18/26/1
f 20/27/3 24/33/3 23/34/3 19/28/3
f 19/28/4 23/35/4 21/36/4 17/25/4

View File

@ -0,0 +1,85 @@
# Blender v2.93.5 OBJ File: 'furniture.blend'
# www.blender.org
o News_stand_Cube.065
v -0.312500 0.125000 0.250000
v -0.312500 0.750000 0.250000
v -0.312500 0.125000 -0.437500
v -0.312500 0.750000 -0.437500
v 0.312500 0.125000 0.250000
v 0.312500 0.750000 0.250000
v 0.312500 0.125000 -0.437500
v 0.312500 0.750000 -0.437500
v -0.156250 -0.437500 0.062500
v -0.156250 0.125000 0.062500
v -0.156250 -0.437500 -0.250000
v -0.156250 0.125000 -0.250000
v 0.156250 -0.437500 0.062500
v 0.156250 0.125000 0.062500
v 0.156250 -0.437500 -0.250000
v 0.156250 0.125000 -0.250000
v -0.312500 -0.500000 0.250000
v -0.312500 -0.437500 0.250000
v -0.312500 -0.500000 -0.437500
v -0.312500 -0.437500 -0.437500
v 0.312500 -0.500000 0.250000
v 0.312500 -0.437500 0.250000
v 0.312500 -0.500000 -0.437500
v 0.312500 -0.437500 -0.437500
vt 0.328125 1.000000
vt 0.328125 0.843750
vt 0.500000 0.843750
vt 0.500000 1.000000
vt 0.328125 0.515625
vt 0.328125 0.671875
vt 0.171875 0.671875
vt 0.171875 0.515625
vt 0.000000 1.000000
vt 0.000000 0.843750
vt 0.171875 0.843750
vt 0.171875 1.000000
vt 0.171875 0.343750
vt 0.328125 0.343750
vt 0.085938 0.335938
vt 0.085938 0.195312
vt 0.164062 0.195312
vt 0.164062 0.335938
vt 0.242188 0.195312
vt 0.242188 0.335938
vt 0.320312 0.195312
vt 0.320312 0.335938
vt 0.007812 0.335938
vt 0.007812 0.195312
vt 0.023438 0.187500
vt 0.023438 0.171875
vt 0.195312 0.171875
vt 0.195312 0.187500
vt 0.210938 0.171875
vt 0.195312 0.015625
vt 0.210938 0.015625
vt 0.195312 0.000000
vt 0.023438 0.015625
vt 0.023438 0.000000
vt 0.007812 0.015625
vt 0.007812 0.171875
vn -1.0000 0.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
vn 0.0000 0.0000 1.0000
vn 0.0000 -1.0000 0.0000
vn 0.0000 1.0000 0.0000
s off
f 1/1/1 2/2/1 4/3/1 3/4/1
f 3/5/2 4/6/2 8/7/2 7/8/2
f 7/9/3 8/10/3 6/11/3 5/12/3
f 5/12/4 6/11/4 2/2/4 1/1/4
f 3/5/5 7/8/5 5/13/5 1/14/5
f 8/7/6 4/6/6 2/2/6 6/11/6
f 9/15/1 10/16/1 12/17/1 11/18/1
f 11/18/2 12/17/2 16/19/2 15/20/2
f 15/20/3 16/19/3 14/21/3 13/22/3
f 13/23/4 14/24/4 10/16/4 9/15/4
f 17/25/1 18/26/1 20/27/1 19/28/1
f 19/29/2 20/27/2 24/30/2 23/31/2
f 23/32/3 24/30/3 22/33/3 21/34/3
f 21/35/4 22/33/4 18/26/4 17/36/4
f 24/30/6 20/27/6 18/26/6 22/33/6

View File

@ -0,0 +1,59 @@
# Blender v2.93.5 OBJ File: 'furniture.blend'
# www.blender.org
o Pop_up_Bollards_down_Cube.062
v -0.500000 -0.500000 0.187500
v -0.500000 -0.468750 0.187500
v -0.500000 -0.500000 -0.187500
v -0.500000 -0.468750 -0.187500
v 0.500000 -0.500000 0.187500
v 0.500000 -0.468750 0.187500
v 0.500000 -0.500000 -0.187500
v 0.500000 -0.468750 -0.187500
v -0.125000 -0.468750 0.125000
v -0.125000 -0.437500 0.125000
v -0.125000 -0.468750 -0.125000
v -0.125000 -0.437500 -0.125000
v 0.125000 -0.468750 0.125000
v 0.125000 -0.437500 0.125000
v 0.125000 -0.468750 -0.125000
v 0.125000 -0.437500 -0.125000
vt 0.984375 0.000000
vt 0.984375 0.015625
vt 0.796875 0.015625
vt 0.796875 0.000000
vt 0.781250 0.015625
vt 0.796875 0.515625
vt 0.781250 0.515625
vt 0.796875 0.531250
vt 0.984375 0.515625
vt 0.984375 0.531250
vt 1.000000 0.515625
vt 1.000000 0.015625
vt 0.000000 0.859375
vt 0.015625 0.859375
vt 0.015625 0.984375
vt 0.000000 0.984375
vt 0.015625 1.000000
vt 0.140625 0.984375
vt 0.140625 1.000000
vt 0.156250 0.984375
vt 0.140625 0.859375
vt 0.156250 0.859375
vt 0.140625 0.843750
vt 0.015625 0.843750
vn -1.0000 0.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
vn 0.0000 0.0000 1.0000
vn 0.0000 1.0000 0.0000
s off
f 1/1/1 2/2/1 4/3/1 3/4/1
f 3/5/2 4/3/2 8/6/2 7/7/2
f 7/8/3 8/6/3 6/9/3 5/10/3
f 5/11/4 6/9/4 2/2/4 1/12/4
f 8/6/5 4/3/5 2/2/5 6/9/5
f 9/13/1 10/14/1 12/15/1 11/16/1
f 11/17/2 12/15/2 16/18/2 15/19/2
f 15/20/3 16/18/3 14/21/3 13/22/3
f 13/23/4 14/21/4 10/14/4 9/24/4
f 16/18/5 12/15/5 10/14/5 14/21/5

View File

@ -0,0 +1,59 @@
# Blender v2.93.5 OBJ File: 'furniture.blend'
# www.blender.org
o Pop_up_Bollards_up_Cube.061
v -0.500000 -0.500000 0.187500
v -0.500000 -0.468750 0.187500
v -0.500000 -0.500000 -0.187500
v -0.500000 -0.468750 -0.187500
v 0.500000 -0.500000 0.187500
v 0.500000 -0.468750 0.187500
v 0.500000 -0.500000 -0.187500
v 0.500000 -0.468750 -0.187500
v -0.125000 -0.468750 0.125000
v -0.125000 0.500000 0.125000
v -0.125000 -0.468750 -0.125000
v -0.125000 0.500000 -0.125000
v 0.125000 -0.468750 0.125000
v 0.125000 0.500000 0.125000
v 0.125000 -0.468750 -0.125000
v 0.125000 0.500000 -0.125000
vt 0.796875 0.531250
vt 0.796875 0.515625
vt 0.984375 0.515625
vt 0.984375 0.531250
vt 1.000000 0.515625
vt 0.984375 0.015625
vt 1.000000 0.015625
vt 0.984375 0.000000
vt 0.796875 0.015625
vt 0.796875 0.000000
vt 0.781250 0.015625
vt 0.781250 0.515625
vt 0.375000 0.000000
vt 0.375000 0.484375
vt 0.250000 0.484375
vt 0.250000 0.000000
vt 0.125000 0.484375
vt 0.125000 0.000000
vt 0.000000 0.484375
vt 0.000000 0.000000
vt 0.500000 0.000000
vt 0.500000 0.484375
vt 0.500000 0.609375
vt 0.375000 0.609375
vn -1.0000 0.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
vn 0.0000 0.0000 1.0000
vn 0.0000 1.0000 0.0000
s off
f 1/1/1 2/2/1 4/3/1 3/4/1
f 3/5/2 4/3/2 8/6/2 7/7/2
f 7/8/3 8/6/3 6/9/3 5/10/3
f 5/11/4 6/9/4 2/2/4 1/12/4
f 8/6/5 4/3/5 2/2/5 6/9/5
f 9/13/1 10/14/1 12/15/1 11/16/1
f 11/16/2 12/15/2 16/17/2 15/18/2
f 15/18/3 16/17/3 14/19/3 13/20/3
f 13/21/4 14/22/4 10/14/4 9/13/4
f 16/23/5 12/24/5 10/14/5 14/22/5

View File

@ -1,4 +1,4 @@
# Blender v2.82 (sub 7) OBJ File: 'furniture.blend'
# Blender v2.93.5 OBJ File: 'furniture.blend'
# www.blender.org
o Table_Cube.011
v -1.500000 0.375000 0.500000
@ -73,118 +73,112 @@ v -0.062500 -0.500000 -0.375000
v 0.062500 -0.500000 -0.375000
v -0.062500 -0.375000 -0.375000
v 0.062500 -0.375000 -0.375000
vt 1.000000 0.937500
vt 1.000000 1.000000
vt 0.500000 1.000000
vt 0.500000 0.937500
vt 0.500000 1.000000
vt 0.562500 1.000000
vt 0.562500 0.000000
vt 0.500000 0.000000
vt 0.500000 0.062500
vt 0.500000 0.000000
vt 1.000000 0.000000
vt 1.000000 0.062500
vt 1.000000 0.000000
vt 0.953125 0.000000
vt 0.953125 1.000000
vt 1.000000 1.000000
vt 0.953125 1.000000
vt 0.953125 0.000000
vt 0.562500 0.000000
vt 0.562500 1.000000
vt 0.125000 0.000000
vt 0.062500 0.000000
vt 0.062500 0.062500
vt 0.125000 0.062500
vt 0.062500 0.937500
vt 0.125000 0.937500
vt 0.062500 1.000000
vt 0.125000 1.000000
vt 0.187500 0.937500
vt 0.187500 0.062500
vt 0.000000 0.062500
vt 0.000000 0.937500
vt 0.500000 0.687500
vt 0.437500 0.687500
vt 0.437500 1.000000
vt 0.500000 1.000000
vt 0.312500 1.000000
vt 0.375000 1.000000
vt 0.375000 0.687500
vt 0.312500 0.687500
vt 0.250000 0.687500
vt 0.250000 1.000000
vt 0.156250 0.687500
vt 0.218750 0.687500
vt 0.218750 0.625000
vt 0.156250 0.625000
vt 0.218750 0.250000
vt 0.156250 0.250000
vt 0.218750 0.187500
vt 0.156250 0.187500
vt 0.093750 0.250000
vt 0.093750 0.625000
vt 0.281250 0.625000
vt 0.281250 0.250000
vt 0.406250 0.453125
vt 0.343750 0.453125
vt 0.343750 0.765625
vt 0.406250 0.765625
vt 0.218750 0.765625
vt 0.281250 0.765625
vt 0.281250 0.453125
vt 0.218750 0.453125
vt 0.156250 0.453125
vt 0.156250 0.765625
vt 0.234375 0.515625
vt 0.296875 0.515625
vt 0.296875 0.453125
vt 0.234375 0.453125
vt 0.296875 0.078125
vt 0.234375 0.078125
vt 0.296875 0.015625
vt 0.234375 0.015625
vt 0.171875 0.078125
vt 0.171875 0.453125
vt 0.359375 0.453125
vt 0.359375 0.078125
vt 0.375000 0.000000
vt 0.312500 0.000000
vt 0.312500 0.062500
vt 0.375000 0.062500
vt 0.312500 0.937500
vt 0.375000 0.937500
vt 0.312500 1.000000
vt 0.375000 1.000000
vt 0.437500 0.937500
vt 0.437500 0.062500
vt 0.250000 0.062500
vt 0.250000 0.937500
vt 0.140625 0.968750
vt 0.203125 0.968750
vt 0.203125 0.906250
vt 0.140625 0.906250
vt 0.203125 0.531250
vt 0.140625 0.531250
vt 0.203125 0.468750
vt 0.140625 0.468750
vt 0.078125 0.531250
vt 0.078125 0.906250
vt 0.265625 0.906250
vt 0.265625 0.531250
vt 0.328125 0.687500
vt 0.390625 0.687500
vt 0.390625 0.625000
vt 0.328125 0.625000
vt 0.390625 0.250000
vt 0.328125 0.250000
vt 0.390625 0.187500
vt 0.328125 0.187500
vt 0.718750 1.000000
vt 0.718750 0.968750
vt 0.968750 0.968750
vt 0.968750 1.000000
vt 1.000000 0.968750
vt 0.968750 0.468750
vt 1.000000 0.468750
vt 0.968750 0.437500
vt 0.718750 0.468750
vt 0.718750 0.437500
vt 0.687500 0.468750
vt 0.687500 0.968750
vt 0.437500 0.968750
vt 0.437500 0.468750
vt 0.132812 -0.000000
vt 0.164062 -0.000000
vt 0.164062 0.031250
vt 0.132812 0.031250
vt 0.164062 0.468750
vt 0.132812 0.468750
vt 0.164062 0.500000
vt 0.132812 0.500000
vt 0.101562 0.468750
vt 0.101562 0.031250
vt 0.195312 0.031250
vt 0.195312 0.468750
vt 0.000000 0.515625
vt 0.031250 0.515625
vt 0.031250 0.671875
vt 0.000000 0.671875
vt 0.093750 0.671875
vt 0.062500 0.671875
vt 0.062500 0.515625
vt 0.093750 0.515625
vt 0.125000 0.515625
vt 0.125000 0.671875
vt 0.335938 0.000000
vt 0.367188 0.000000
vt 0.367188 0.031250
vt 0.335938 0.031250
vt 0.367188 0.218750
vt 0.335938 0.218750
vt 0.367188 0.250000
vt 0.335938 0.250000
vt 0.304688 0.218750
vt 0.304688 0.031250
vt 0.398438 0.031250
vt 0.398438 0.218750
vt 0.132812 0.515625
vt 0.164062 0.515625
vt 0.164062 0.671875
vt 0.132812 0.671875
vt 0.226562 0.671875
vt 0.195312 0.671875
vt 0.195312 0.515625
vt 0.226562 0.515625
vt 0.257812 0.515625
vt 0.257812 0.671875
vt 0.265625 0.250000
vt 0.265625 0.625000
vt 0.453125 0.625000
vt 0.453125 0.250000
vt 0.234375 0.250000
vt 0.234375 0.218750
vt 0.265625 0.218750
vt 0.234375 0.031250
vt 0.265625 0.031250
vt 0.234375 -0.000000
vt 0.265625 -0.000000
vt 0.296875 0.031250
vt 0.296875 0.218750
vt 0.203125 0.218750
vt 0.203125 0.031250
vt 0.031250 -0.000000
vt 0.062500 -0.000000
vt 0.062500 0.031250
vt 0.031250 0.031250
vt 0.062500 0.468750
vt 0.031250 0.468750
vt 0.062500 0.500000
vt 0.031250 0.500000
vt 0.000000 0.468750
vt 0.000000 0.031250
vt 0.093750 0.031250
vt 0.093750 0.468750
vt 0.265625 0.507812
vt 0.234375 0.507812
vt 0.234375 0.476562
vt 0.265625 0.476562
vt 0.234375 0.289062
vt 0.265625 0.289062
vt 0.234375 0.257812
vt 0.265625 0.257812
vt 0.296875 0.289062
vt 0.296875 0.476562
vt 0.203125 0.476562
vt 0.203125 0.289062
vt 0.335938 0.257812
vt 0.367188 0.257812
vt 0.367188 0.289062
vt 0.335938 0.289062
vt 0.367188 0.476562
vt 0.335938 0.476562
vt 0.367188 0.507812
vt 0.335938 0.507812
vt 0.304688 0.476562
vt 0.304688 0.289062
vt 0.398438 0.289062
vt 0.398438 0.476562
vn -1.0000 0.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
@ -193,46 +187,46 @@ vn 0.0000 -1.0000 0.0000
vn 0.0000 1.0000 0.0000
s off
f 1/1/1 2/2/1 4/3/1 3/4/1
f 3/5/2 4/6/2 8/7/2 7/8/2
f 7/9/3 8/10/3 6/11/3 5/12/3
f 5/13/4 6/14/4 2/15/4 1/16/4
f 3/17/5 7/18/5 5/19/5 1/20/5
f 8/10/6 4/3/6 2/2/6 6/11/6
f 9/21/1 10/22/1 12/23/1 11/24/1
f 11/24/5 12/23/5 16/25/5 15/26/5
f 15/26/3 16/25/3 14/27/3 13/28/3
f 11/24/4 15/26/4 13/29/4 9/30/4
f 16/25/2 12/23/2 10/31/2 14/32/2
f 19/33/4 20/34/4 24/35/4 23/36/4
f 21/37/2 22/38/2 18/39/2 17/40/2
f 19/41/1 23/42/1 21/37/1 17/40/1
f 24/35/3 20/34/3 18/39/3 22/38/3
f 25/43/2 26/44/2 28/45/2 27/46/2
f 27/46/5 28/45/5 32/47/5 31/48/5
f 31/48/4 32/47/4 30/49/4 29/50/4
f 27/46/1 31/48/1 29/51/1 25/52/1
f 32/47/3 28/45/3 26/53/3 30/54/3
f 35/55/4 36/56/4 40/57/4 39/58/4
f 37/59/2 38/60/2 34/61/2 33/62/2
f 35/63/1 39/64/1 37/59/1 33/62/1
f 40/57/3 36/56/3 34/61/3 38/60/3
f 41/65/2 42/66/2 44/67/2 43/68/2
f 43/68/5 44/67/5 48/69/5 47/70/5
f 47/70/4 48/69/4 46/71/4 45/72/4
f 43/68/1 47/70/1 45/73/1 41/74/1
f 48/69/3 44/67/3 42/75/3 46/76/3
f 49/77/1 50/78/1 52/79/1 51/80/1
f 51/80/6 52/79/6 56/81/6 55/82/6
f 55/82/3 56/81/3 54/83/3 53/84/3
f 51/80/2 55/82/2 53/85/2 49/86/2
f 56/81/4 52/79/4 50/87/4 54/88/4
f 57/89/4 58/90/4 60/91/4 59/92/4
f 59/92/6 60/91/6 64/93/6 63/94/6
f 63/94/2 64/93/2 62/95/2 61/96/2
f 59/92/1 63/94/1 61/97/1 57/98/1
f 64/93/3 60/91/3 58/99/3 62/100/3
f 65/101/4 66/102/4 68/103/4 67/104/4
f 67/104/6 68/103/6 72/105/6 71/106/6
f 71/106/2 72/105/2 70/107/2 69/108/2
f 67/104/1 71/106/1 69/109/1 65/110/1
f 72/105/3 68/103/3 66/111/3 70/112/3
f 3/5/2 4/3/2 8/6/2 7/7/2
f 7/8/3 8/6/3 6/9/3 5/10/3
f 5/11/4 6/9/4 2/2/4 1/12/4
f 3/13/5 7/14/5 5/11/5 1/12/5
f 8/6/6 4/3/6 2/2/6 6/9/6
f 9/15/1 10/16/1 12/17/1 11/18/1
f 11/18/5 12/17/5 16/19/5 15/20/5
f 15/20/3 16/19/3 14/21/3 13/22/3
f 11/18/4 15/20/4 13/23/4 9/24/4
f 16/19/2 12/17/2 10/25/2 14/26/2
f 19/27/4 20/28/4 24/29/4 23/30/4
f 21/31/2 22/32/2 18/33/2 17/34/2
f 19/35/1 23/36/1 21/31/1 17/34/1
f 24/29/3 20/28/3 18/33/3 22/32/3
f 25/37/2 26/38/2 28/39/2 27/40/2
f 27/40/5 28/39/5 32/41/5 31/42/5
f 31/42/4 32/41/4 30/43/4 29/44/4
f 27/40/1 31/42/1 29/45/1 25/46/1
f 32/41/3 28/39/3 26/47/3 30/48/3
f 35/49/4 36/50/4 40/51/4 39/52/4
f 37/53/2 38/54/2 34/55/2 33/56/2
f 35/57/1 39/58/1 37/53/1 33/56/1
f 40/51/3 36/50/3 34/55/3 38/54/3
f 41/59/2 42/60/2 44/61/2 43/62/2
f 43/62/5 44/61/5 48/63/5 47/64/5
f 47/64/4 48/63/4 46/65/4 45/66/4
f 43/62/1 47/64/1 45/67/1 41/68/1
f 48/63/3 44/61/3 42/69/3 46/70/3
f 49/71/1 50/72/1 52/73/1 51/74/1
f 51/74/6 52/73/6 56/75/6 55/76/6
f 55/76/3 56/75/3 54/77/3 53/78/3
f 51/74/2 55/76/2 53/79/2 49/80/2
f 56/75/4 52/73/4 50/81/4 54/82/4
f 57/83/4 58/84/4 60/85/4 59/86/4
f 59/86/6 60/85/6 64/87/6 63/88/6
f 63/88/2 64/87/2 62/89/2 61/90/2
f 59/86/1 63/88/1 61/91/1 57/92/1
f 64/87/3 60/85/3 58/93/3 62/94/3
f 65/95/4 66/96/4 68/97/4 67/98/4
f 67/98/6 68/97/6 72/99/6 71/100/6
f 71/100/2 72/99/2 70/101/2 69/102/2
f 67/98/1 71/100/1 69/103/1 65/104/1
f 72/99/3 68/97/3 66/105/3 70/106/3

View File

@ -41,66 +41,60 @@ v 0.375000 -0.500000 0.375000
v 0.250000 -0.500000 0.375000
v 0.375000 -0.500000 0.250000
v 0.250000 -0.500000 0.250000
vt 1.000000 0.937500
vt 1.000000 1.000000
vt 0.500000 1.000000
vt 0.500000 0.937500
vt 0.500000 1.000000
vt 0.562500 1.000000
vt 0.562500 0.000000
vt 0.500000 0.000000
vt 0.500000 0.062500
vt 0.500000 0.000000
vt 1.000000 0.000000
vt 1.000000 0.062500
vt 1.000000 0.000000
vt 0.953125 0.000000
vt 0.953125 1.000000
vt 1.000000 1.000000
vt 0.953125 1.000000
vt 0.953125 0.000000
vt 0.562500 0.000000
vt 0.562500 1.000000
vt 0.250000 0.578125
vt 0.187500 0.578125
vt 0.187500 0.765625
vt 0.250000 0.765625
vt 0.062500 0.765625
vt 0.125000 0.765625
vt 0.125000 0.578125
vt 0.062500 0.578125
vt -0.000000 0.578125
vt -0.000000 0.765625
vt 0.250000 0.000000
vt 0.187500 0.000000
vt 0.187500 0.187500
vt 0.250000 0.187500
vt 0.062500 0.187500
vt 0.125000 0.187500
vt 0.125000 0.000000
vt 0.062500 0.000000
vt -0.000000 0.000000
vt 0.000000 0.187500
vt 0.187500 0.421875
vt 0.187500 0.234375
vt 0.125000 0.234375
vt 0.125000 0.421875
vt 0.000000 0.234375
vt 0.000000 0.421875
vt 0.062500 0.421875
vt 0.062500 0.234375
vt 0.250000 0.234375
vt 0.250000 0.421875
vt 0.187500 1.000000
vt 0.187500 0.812500
vt 0.125000 0.812500
vt 0.125000 1.000000
vt 0.000000 0.812500
vt -0.000000 1.000000
vt 0.718750 1.000000
vt 0.718750 0.968750
vt 0.968750 0.968750
vt 0.968750 1.000000
vt 1.000000 0.968750
vt 0.968750 0.468750
vt 1.000000 0.468750
vt 0.968750 0.437500
vt 0.718750 0.468750
vt 0.718750 0.437500
vt 0.687500 0.468750
vt 0.687500 0.968750
vt 0.437500 0.968750
vt 0.437500 0.468750
vt 0.000000 0.804688
vt 0.031250 0.804688
vt 0.031250 0.898438
vt 0.000000 0.898438
vt 0.093750 0.898438
vt 0.062500 0.898438
vt 0.062500 0.804688
vt 0.093750 0.804688
vt 0.125000 0.804688
vt 0.125000 0.898438
vt 0.132812 0.804688
vt 0.164062 0.804688
vt 0.164062 0.898438
vt 0.132812 0.898438
vt 0.226562 0.898438
vt 0.195312 0.898438
vt 0.195312 0.804688
vt 0.226562 0.804688
vt 0.257812 0.804688
vt 0.257812 0.898438
vt 0.164062 1.000000
vt 0.164062 0.906250
vt 0.195312 0.906250
vt 0.195312 1.000000
vt 0.257812 0.906250
vt 0.257812 1.000000
vt 0.226562 1.000000
vt 0.226562 0.906250
vt 0.132812 0.906250
vt 0.132812 1.000000
vt 0.031250 1.000000
vt 0.031250 0.906250
vt 0.062500 0.906250
vt 0.062500 1.000000
vt 0.062500 0.812500
vt 0.250000 0.812500
vt 0.250000 1.000000
vt 0.125000 0.906250
vt 0.125000 1.000000
vt 0.093750 1.000000
vt 0.093750 0.906250
vt 0.000000 0.906250
vt 0.000000 1.000000
vn -1.0000 0.0000 0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
@ -109,24 +103,24 @@ vn 0.0000 -1.0000 0.0000
vn 0.0000 1.0000 0.0000
s off
f 1/1/1 2/2/1 4/3/1 3/4/1
f 3/5/2 4/6/2 8/7/2 7/8/2
f 7/9/3 8/10/3 6/11/3 5/12/3
f 5/13/4 6/14/4 2/15/4 1/16/4
f 3/17/5 7/18/5 5/19/5 1/20/5
f 8/10/6 4/3/6 2/2/6 6/11/6
f 11/21/4 12/22/4 16/23/4 15/24/4
f 13/25/2 14/26/2 10/27/2 9/28/2
f 11/29/1 15/30/1 13/25/1 9/28/1
f 16/23/3 12/22/3 10/27/3 14/26/3
f 19/31/4 20/32/4 24/33/4 23/34/4
f 21/35/2 22/36/2 18/37/2 17/38/2
f 19/39/1 23/40/1 21/35/1 17/38/1
f 24/33/3 20/32/3 18/37/3 22/36/3
f 25/41/3 29/42/3 31/43/3 27/44/3
f 30/45/1 26/46/1 28/47/1 32/48/1
f 28/47/2 27/44/2 31/43/2 32/48/2
f 30/49/4 29/42/4 25/41/4 26/50/4
f 33/51/3 37/52/3 39/53/3 35/54/3
f 38/55/1 34/56/1 36/57/1 40/58/1
f 36/57/2 35/54/2 39/53/2 40/58/2
f 38/59/4 37/52/4 33/51/4 34/60/4
f 3/5/2 4/3/2 8/6/2 7/7/2
f 7/8/3 8/6/3 6/9/3 5/10/3
f 5/11/4 6/9/4 2/2/4 1/12/4
f 3/13/5 7/14/5 5/11/5 1/12/5
f 8/6/6 4/3/6 2/2/6 6/9/6
f 11/15/4 12/16/4 16/17/4 15/18/4
f 13/19/2 14/20/2 10/21/2 9/22/2
f 11/23/1 15/24/1 13/19/1 9/22/1
f 16/17/3 12/16/3 10/21/3 14/20/3
f 19/25/4 20/26/4 24/27/4 23/28/4
f 21/29/2 22/30/2 18/31/2 17/32/2
f 19/33/1 23/34/1 21/29/1 17/32/1
f 24/27/3 20/26/3 18/31/3 22/30/3
f 25/35/3 29/36/3 31/37/3 27/38/3
f 30/39/1 26/40/1 28/41/1 32/42/1
f 28/41/2 27/38/2 31/37/2 32/42/2
f 30/43/4 29/36/4 25/35/4 26/44/4
f 33/45/3 37/46/3 39/47/3 35/48/3
f 38/49/1 34/50/1 36/51/1 40/52/1
f 36/51/2 35/48/2 39/47/2 40/52/2
f 38/53/4 37/46/4 33/45/4 34/54/4

74
mods/furniture/news.lua Normal file
View File

@ -0,0 +1,74 @@
minetest.register_node('furniture:news_stand', {
description = 'News Stand',
drawtype = 'mesh',
mesh = 'furniture_news_stand.obj',
tiles = {'furniture_news_stand.png'},
paramtype = 'light',
paramtype2 = 'facedir',
groups = {breakable=1},
selection_box = {
type = 'fixed',
fixed = {-.3125, -.5, -.4375, .3125, .75, .25},
},
collision_box = {
type = 'fixed',
fixed = {-.3125, -.5, -.4375, .3125, .75, .25},
},
after_place_node = function(pos, placer)
local meta = minetest.get_meta(pos)
meta:set_string('owner', placer:get_player_name())
meta:set_string('infotext', 'Server News')
meta:set_string('title', '')
meta:set_string('content', '')
end,
on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
local name = clicker:get_player_name()
local meta = minetest.get_meta(pos)
local owner = meta:get_string('owner')
local title = meta:get_string('title')
local content = meta:get_string('content')
if owner == name then
meta:set_string('formspec', furniture.news_stand_edit(title, content))
else
if content ~= '' then
meta:set_string('formspec', furniture.news_stand_view(title, content))
else
minetest.show_formspec(name, 'furniture:news', news_formspec)
end
end
end,
on_receive_fields = function(pos, formname, fields, sender)
local meta = minetest.get_meta(pos)
if fields ['save'] then
local player_name = sender:get_player_name()
meta:set_string('infotext', fields.title)
meta:set_string('title', fields.title)
meta:set_string('content', fields.content)
minetest.log("action", (player_name or "").." wrote \""..fields.title.."\" to lectern at "..minetest.pos_to_string(pos))
end
end,
on_punch = function(pos, node, puncher)
minetest.show_formspec(puncher:get_player_name(), 'furniture:new', news_formspec)
end,
})
local news = {
'1/7/22',
'Updated textures/UVs on a bunch of the furniture models.',
'',
'1/8/22',
'Added news stand.',
'',
'',}
for i = 1, #news do
news[i] = minetest.formspec_escape(news[i])
end
news.txt = table.concat(news, ',')
news_formspec =
'size[11,10]'..
'no_prepend[]'..
'bgcolor[#080808BB;true]'..
'hypertext[0,.2;12,1;;<center><style color=black size=40>~~News~~</style></center>]'..
'textlist[2,1.5;11,6;msg;'..news.txt..';0;true]'

View File

@ -113,3 +113,55 @@ minetest.register_node('furniture:parking_bumper', {
},
groups = {breakable=1},
})
minetest.register_node('furniture:bollard_popup_0', { --Closed
description = 'Popup Bollard',
drawtype = 'mesh',
mesh = 'furniture_popup_bollard_down.obj',
tiles = {'furniture_popup_bollard_down.png'},
paramtype = 'light',
paramtype2 = 'facedir',
drop = 'furniture:bollard_popup_1',
selection_box = {
type = 'fixed',
fixed = {-.5, -.5, -.1875, .5, -.375, .1875},
},
collision_box = {
type = 'fixed',
fixed = {-.5, -.5, -.1875, .5, -.375, .1875},
},
groups = {breakable=1, not_in_creative_inventory=1},
on_rightclick = function(pos, node, clicker)
local player_name = clicker:get_player_name()
if not minetest.is_protected(pos, player_name) and minetest.check_player_privs(player_name, { creative = true }) then
local node = minetest.get_node(pos)
minetest.set_node(pos, {name = 'furniture:bollard_popup_1', param2 = node.param2})
end
end
})
minetest.register_node('furniture:bollard_popup_1', { --Open
description = 'Popup Bollard',
drawtype = 'mesh',
mesh = 'furniture_popup_bollard_up.obj',
tiles = {'furniture_popup_bollard_up.png'},
paramtype = 'light',
paramtype2 = 'facedir',
selection_box = {
type = 'fixed',
fixed = {{-.5, -.5, -.1875, .5, -.375, .1875},
{-.125, -.375, -.125, .125, .5, .125}}
},
collision_box = {
type = 'fixed',
fixed = {-.5, -.5, -.1875, .5, 1, .1875},
},
groups = {breakable=1},
on_rightclick = function(pos, node, clicker)
local player_name = clicker:get_player_name()
if not minetest.is_protected(pos, player_name) and minetest.check_player_privs(player_name, { creative = true }) then
local node = minetest.get_node(pos)
minetest.set_node(pos, {name = 'furniture:bollard_popup_0', param2 = node.param2})
end
end
})

View File

@ -86,7 +86,7 @@ minetest.register_node('furniture:bench_with_back', {
description = 'Bench with Back',
drawtype = 'mesh',
mesh = 'furniture_bench_with_back.obj',
tiles = {'furniture_bench.png'},
tiles = {'furniture_bench_with_back.png'},
paramtype = 'light',
paramtype2 = 'colorfacedir',
palette = 'furniture_stain_palette.png',

View File

@ -23,7 +23,7 @@ minetest.register_node('furniture:table_coffee', {
description = 'Coffee Table',
drawtype = 'mesh',
mesh = 'furniture_table_coffee.obj',
tiles = {'furniture_table_basic.png'},
tiles = {'furniture_table_coffee.png'},
paramtype = 'light',
paramtype2 = 'colorfacedir',
palette = 'furniture_stain_palette.png',

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -1,7 +1,3 @@
levels.register_basic('floor_cyan', 'Cyan Floor', 'hard')
levels.register_basic('floor_red', 'Red Floor', 'hard')
levels.register_basic('floor_white', 'White Floor', 'hard')
levels.register_basic('scifi_0', 'Sci-fi 0', 'hard')
levels.register_basic('scifi_1', 'Sci-fi 1', 'hard')
levels.register_basic('scifi_2', 'Sci-fi 2', 'hard')
@ -20,3 +16,19 @@ levels.register_basic('scifi_14', 'Sci-fi 14', 'hard')
levels.register_basic('scifi_15', 'Sci-fi 15', 'hard')
levels.register_basic('scifi_16', 'Sci-fi 16', 'hard')
levels.register_basic('scifi_17', 'Sci-fi 17', 'hard')
minetest.register_abm({ --This can be removed in a few weeks/months, as all levels:floor nodes should have been replaced.
label = 'convert bad nodes to color nodes.',
nodenames = {'levels:floor_red', 'levels:floor_cyan', 'levels:floor_white'},
interval = 1,
chance = 1,
action = function(pos, node)
if node.name == 'levels:floor_red' then
minetest.set_node(pos, {name = 'color:red_blocks', param2 = 80})
elseif node.name == 'levels:floor_cyan' then
minetest.set_node(pos, {name = 'color:aqua_blocks', param2 = 42})
elseif node.name == 'levels:floor_white' then
minetest.set_node(pos, {name = 'color:grey_blocks', param2 = 60})
end
end
})

View File

@ -0,0 +1,113 @@
local formspec_good =
'size[6,3]'..
'textarea[1,1;5,2;;;Working Fine.]'
local formspec_bad =
'formspec_version[3]'..
'size[10.5,7]'..
'textarea[.5,.5;5,1;;;Shields down!!!\nNew Quantum Coil Needed ASAP.]' ..
'button_exit[3.5,1.5;3,1;gimme;Grab a part request form]'..
'list[current_name;part;8,1.5;1,1;]'..
'list[current_player;main;.5,3;8,3;]'..
'listring[current_player;main]'..
'listring[current_name;part]'..
'image[8,1.5;1,1;tasks_quantum_coil_line.png]'
local on_box = {
type = 'fixed',
fixed = {
{-.5, -.5, -.5, .5, .5, .5},
{-1.5, -.5, 1.45, 1.5, 1.5, 1.5}},}
local off_box = {
type = 'fixed',
fixed = {
{-.5, -.5, -.5, .5, .5, .5},},}
minetest.register_node('tasks:forcefield_gen_on',{
description = 'Forcefield Generator',
drawtype = 'mesh',
mesh = 'tasks_forcefield_gen.obj',
tiles = {name = 'tasks_forcefield_gen_on.png'},
paramtype = 'light',
paramtype2 = 'facedir',
light_source = 12,
selection_box = on_box,
collision_box = on_box,
groups = {breakable = 1, tasks=1},
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_string('formspec', formspec_good)
meta:set_string('infotext', 'Forcefield Generator')
meta:set_int('time_min', 300)
meta:set_int('time_max', 600)
meta:set_int('xp', 10)
tasks.on_construct(pos)
end,
on_rightclick = tasks.right_click,
on_timer = function(pos)
local node = minetest.get_node(pos)
local meta = minetest.get_meta(pos)
local infotext = meta:get_string('infotext')
meta:set_string('formspec', formspec_bad)
meta:set_string('infotext', infotext..' (Needs repair!)')
minetest.swap_node(pos, {name = 'tasks:forcefield_gen_off', param2 = node.param2})
--minetest.sound_play('tasks_smoke_alarm_chirp', {pos = pos, gain = 2, max_hear_distance = 14})
end,
})
minetest.register_node('tasks:forcefield_gen_off',{
description = 'Forcefield Generator',
drawtype = 'mesh',
mesh = 'tasks_forcefield_gen.obj',
tiles = {name = 'tasks_forcefield_gen_off.png'},
paramtype = 'light',
paramtype2 = 'facedir',
selection_box = off_box,
collision_box = off_box,
groups = {breakable = 1, not_in_creative_inventory=1, tasks=1},
drop = 'tasks:forcefield_gen_on',
on_receive_fields = function(pos, formname, fields, sender)
if fields ['gimme'] then
local player_inv = sender:get_inventory()
if not player_inv:contains_item('main', {name='tasks:quantum_coil_req', count = 2}) then
player_inv:add_item('main', 'tasks:quantum_coil_req')
else
minetest.chat_send_player(sender:get_player_name(), 'You have too many of these already.')
end
end
end,
allow_metadata_inventory_put = function(pos, listname, index, stack, player)
if listname == 'part' then
if stack:get_name() == 'tasks:quantum_coil' then
local player_attributes = player:get_meta()
local luck = player_attributes:get_int('luck')
if luck*2 < math.random(10) then
minetest.chat_send_player(player:get_player_name(), 'You drop the coil, fortunately it doesn\'t break.')
return 0
else
return 1
end
end
return 0
end
end,
on_metadata_inventory_put = function(pos, listname, index, stack, player)
local name = player:get_player_name()
local meta = minetest.get_meta(pos)
local xp = meta:get_int('xp') or 10
local inv = meta:get_inventory()
local node = minetest.get_node(pos)
local timer = minetest.get_node_timer(pos)
local min = meta:get_int('time_min') or 300
local max = meta:get_int('time_max') or 600
local random_number = math.random(min,max)
local infotext = string.sub(meta:get_string('infotext'), 1, -17)
inv:set_stack('part', 1, '')
minetest.swap_node(pos, {name = 'tasks:forcefield_gen_on', param2 = node.param2})
meta:set_string('formspec', formspec_good)
meta:set_string('infotext', infotext)
tasks.only_add_xp(xp, name)
timer:start(random_number)
end,
})

View File

@ -17,7 +17,9 @@ dofile(minetest.get_modpath('tasks')..'/code.lua')
dofile(minetest.get_modpath('tasks')..'/engine_0.lua')
dofile(minetest.get_modpath('tasks')..'/engine_1.lua')
dofile(minetest.get_modpath('tasks')..'/example.lua')
dofile(minetest.get_modpath('tasks')..'/forcefield_gen.lua')
dofile(minetest.get_modpath('tasks')..'/match.lua')
dofile(minetest.get_modpath('tasks')..'/radio_dish.lua')
dofile(minetest.get_modpath('tasks')..'/rubbish.lua')
dofile(minetest.get_modpath('tasks')..'/smoke_detector.lua')
dofile(minetest.get_modpath('tasks')..'/transformer.lua')

View File

@ -67,5 +67,37 @@ minetest.register_craftitem('tasks:log', {
inventory_image = 'tasks_log.png',
stack_max = 1,
groups = {not_in_creative_inventory=1},
on_drop = lobby.no_drop,
on_drop = lobby.no_drop
})
minetest.register_craftitem('tasks:lnb', {
description = 'Low-noise Block Downconverter',
inventory_image = 'tasks_lnb.png',
stack_max = 1,
groups = {not_in_creative_inventory=1, stashable=1},
on_drop = lobby.no_drop
})
minetest.register_craftitem('tasks:lnb_req', {
description = 'Low-noise Block Downconverter Request Form',
inventory_image = 'tasks_lnb_req.png',
stack_max = 1,
groups = {not_in_creative_inventory=1},
on_drop = lobby.no_drop
})
minetest.register_craftitem('tasks:quantum_coil', {
description = 'Quantum Coil',
inventory_image = 'tasks_quantum_coil.png',
stack_max = 1,
groups = {not_in_creative_inventory=1, stashable=1},
on_drop = lobby.no_drop
})
minetest.register_craftitem('tasks:quantum_coil_req', {
description = 'Quantum Coil Request Form',
inventory_image = 'tasks_quantum_coil_req.png',
stack_max = 1,
groups = {not_in_creative_inventory=1},
on_drop = lobby.no_drop
})

View File

@ -0,0 +1,245 @@
# Blender v2.93.5 OBJ File: 'tasks.blend'
# www.blender.org
o Forcefield_Generator_Cube.013
v 0.406250 -0.500000 0.406250
v 0.406250 -0.187500 0.406250
v -0.406250 -0.500000 0.406250
v -0.406250 -0.187500 0.406250
v 0.406250 -0.500000 -0.406250
v 0.406250 -0.187500 -0.406250
v -0.406250 -0.500000 -0.406250
v -0.406250 -0.187500 -0.406250
v 0.187500 -0.500000 -0.406250
v 0.187500 -0.250000 -0.406250
v -0.187500 -0.500000 -0.406250
v -0.187500 -0.250000 -0.406250
v 0.187500 -0.500000 -0.468750
v 0.187500 -0.250000 -0.468750
v -0.187500 -0.500000 -0.468750
v -0.187500 -0.250000 -0.468750
v -0.187500 -0.500000 0.406250
v -0.187500 -0.250000 0.406250
v 0.187500 -0.500000 0.406250
v 0.187500 -0.250000 0.406250
v -0.187500 -0.500000 0.468750
v -0.187500 -0.250000 0.468750
v 0.187500 -0.500000 0.468750
v 0.187500 -0.250000 0.468750
v -0.406250 -0.500000 -0.187500
v -0.406250 -0.250000 -0.187500
v -0.406250 -0.500000 0.187500
v -0.406250 -0.250000 0.187500
v -0.468750 -0.500000 -0.187500
v -0.468750 -0.250000 -0.187500
v -0.468750 -0.500000 0.187500
v -0.468750 -0.250000 0.187500
v 0.406250 -0.500000 0.187500
v 0.406250 -0.250000 0.187500
v 0.406250 -0.500000 -0.187500
v 0.406250 -0.250000 -0.187500
v 0.468750 -0.500000 0.187500
v 0.468750 -0.250000 0.187500
v 0.468750 -0.500000 -0.187500
v 0.468750 -0.250000 -0.187500
v 0.250000 -0.125000 0.250000
v 0.250000 0.312500 0.250000
v -0.250000 -0.125000 0.250000
v -0.250000 0.312500 0.250000
v 0.250000 -0.125000 -0.250000
v 0.250000 0.312500 -0.250000
v -0.250000 -0.125000 -0.250000
v -0.250000 0.312500 -0.250000
v 0.125000 0.312500 0.187500
v 0.125000 0.500000 0.187500
v -0.125000 0.312500 0.187500
v -0.125000 0.500000 0.187500
v 0.125000 0.312500 -0.062500
v 0.125000 0.500000 -0.062500
v -0.125000 0.312500 -0.062500
v -0.125000 0.500000 -0.062500
v -0.125000 -0.062500 -0.125000
v -0.125000 -0.187500 -0.125000
v 0.125000 -0.062500 -0.125000
v 0.125000 -0.187500 -0.125000
v -0.125000 -0.062500 0.125000
v -0.125000 -0.187500 0.125000
v 0.125000 -0.062500 0.125000
v 0.125000 -0.187500 0.125000
v -0.250000 -0.062500 0.187500
v -0.437500 -0.062500 0.187500
v -0.250000 -0.062500 -0.062500
v -0.437500 -0.062500 -0.062500
v -0.250000 0.250000 0.187500
v -0.437500 0.250000 0.187500
v -0.250000 0.250000 -0.062500
v -0.437500 0.250000 -0.062500
v 0.250000 -0.062500 -0.062500
v 0.437500 -0.062500 -0.062500
v 0.250000 -0.062500 0.187500
v 0.437500 -0.062500 0.187500
v 0.250000 0.250000 -0.062500
v 0.437500 0.250000 -0.062500
v 0.250000 0.250000 0.187500
v 0.437500 0.250000 0.187500
vt 0.000000 0.078125
vt 0.078125 0.078125
vt 0.078125 0.281250
vt 0.000000 0.281250
vt 0.078125 0.359375
vt 0.281250 0.281250
vt 0.281250 0.359375
vt 0.359375 0.281250
vt 0.281250 0.078125
vt 0.359375 0.078125
vt 0.281250 0.000000
vt 0.078125 0.000000
vt 1.000000 0.039062
vt 1.000000 0.101562
vt 0.984375 0.101562
vt 0.984375 0.039062
vt 0.867188 0.125000
vt 0.867188 0.187500
vt 0.851562 0.187500
vt 0.851562 0.125000
vt 0.757812 0.187500
vt 0.757812 0.125000
vt 0.742188 0.187500
vt 0.742188 0.125000
vt 0.851562 0.203125
vt 0.757812 0.203125
vt 0.890625 0.101562
vt 0.890625 0.039062
vt 0.875000 0.101562
vt 0.875000 0.039062
vt 0.984375 0.117188
vt 0.890625 0.117188
vt 1.000000 0.125000
vt 1.000000 0.187500
vt 0.984375 0.187500
vt 0.984375 0.125000
vt 0.867188 0.039062
vt 0.867188 0.101562
vt 0.851562 0.101562
vt 0.851562 0.039062
vt 0.757812 0.101562
vt 0.757812 0.039062
vt 0.742188 0.101562
vt 0.742188 0.039062
vt 0.851562 0.117188
vt 0.757812 0.117188
vt 0.890625 0.187500
vt 0.890625 0.125000
vt 0.875000 0.187500
vt 0.875000 0.125000
vt 0.984375 0.203125
vt 0.890625 0.203125
vt 0.109375 0.710938
vt 0.109375 0.601562
vt 0.234375 0.601562
vt 0.234375 0.710938
vt 0.343750 0.601562
vt 0.234375 0.476562
vt 0.343750 0.476562
vt 0.234375 0.367188
vt 0.109375 0.476562
vt 0.109375 0.367188
vt -0.000000 0.476562
vt -0.000000 0.601562
vt 0.445312 0.179688
vt 0.492188 0.179688
vt 0.492188 0.242188
vt 0.445312 0.242188
vt 0.492188 0.289062
vt 0.554688 0.242188
vt 0.554688 0.289062
vt 0.601562 0.242188
vt 0.554688 0.179688
vt 0.601562 0.179688
vt 0.554688 0.132812
vt 0.492188 0.132812
vt 0.812500 0.000000
vt 0.812500 0.031250
vt 0.750000 0.031250
vt 0.750000 0.000000
vt 0.875000 0.000000
vt 0.875000 0.031250
vt 0.937500 0.000000
vt 0.937500 0.031250
vt 1.000000 0.000000
vt 1.000000 0.031250
vt 0.476562 0.000000
vt 0.476562 0.046875
vt 0.414062 0.046875
vt 0.414062 0.000000
vt 0.367188 0.046875
vt 0.414062 0.125000
vt 0.367188 0.125000
vt 0.414062 0.171875
vt 0.476562 0.125000
vt 0.476562 0.171875
vt 0.523438 0.125000
vt 0.523438 0.046875
vt 0.640625 0.000000
vt 0.640625 0.046875
vt 0.578125 0.046875
vt 0.578125 0.000000
vt 0.531250 0.046875
vt 0.578125 0.125000
vt 0.531250 0.125000
vt 0.578125 0.171875
vt 0.640625 0.125000
vt 0.640625 0.171875
vt 0.687500 0.125000
vt 0.687500 0.046875
vn -0.0000 0.0000 1.0000
vn -1.0000 0.0000 -0.0000
vn 0.0000 0.0000 -1.0000
vn 1.0000 0.0000 0.0000
vn 0.0000 1.0000 0.0000
vn -0.0000 -1.0000 0.0000
s off
f 1/1/1 2/2/1 4/3/1 3/4/1
f 3/5/2 4/3/2 8/6/2 7/7/2
f 7/8/3 8/6/3 6/9/3 5/10/3
f 5/11/4 6/9/4 2/2/4 1/12/4
f 19/13/4 20/14/4 24/15/4 23/16/4
f 8/6/5 4/3/5 2/2/5 6/9/5
f 11/17/2 12/18/2 16/19/2 15/20/2
f 15/20/3 16/19/3 14/21/3 13/22/3
f 13/22/4 14/21/4 10/23/4 9/24/4
f 16/19/5 12/25/5 10/26/5 14/21/5
f 23/16/1 24/15/1 22/27/1 21/28/1
f 21/28/2 22/27/2 18/29/2 17/30/2
f 24/15/5 20/31/5 18/32/5 22/27/5
f 35/33/3 36/34/3 40/35/3 39/36/3
f 27/37/1 28/38/1 32/39/1 31/40/1
f 31/40/2 32/39/2 30/41/2 29/42/2
f 29/42/3 30/41/3 26/43/3 25/44/3
f 32/39/5 28/45/5 26/46/5 30/41/5
f 39/36/4 40/35/4 38/47/4 37/48/4
f 37/48/1 38/47/1 34/49/1 33/50/1
f 40/35/5 36/51/5 34/52/5 38/47/5
f 41/53/1 42/54/1 44/55/1 43/56/1
f 43/57/2 44/55/2 48/58/2 47/59/2
f 47/60/3 48/58/3 46/61/3 45/62/3
f 45/63/4 46/61/4 42/54/4 41/64/4
f 48/58/5 44/55/5 42/54/5 46/61/5
f 49/65/1 50/66/1 52/67/1 51/68/1
f 51/69/2 52/67/2 56/70/2 55/71/2
f 55/72/3 56/70/3 54/73/3 53/74/3
f 53/75/4 54/73/4 50/66/4 49/76/4
f 56/70/5 52/67/5 50/66/5 54/73/5
f 60/77/4 59/78/4 63/79/4 64/80/4
f 58/81/3 57/82/3 59/78/3 60/77/3
f 62/83/2 61/84/2 57/82/2 58/81/2
f 64/85/1 63/86/1 61/84/1 62/83/1
f 65/87/6 66/88/6 68/89/6 67/90/6
f 67/91/3 68/89/3 72/92/3 71/93/3
f 71/94/5 72/92/5 70/95/5 69/96/5
f 69/97/1 70/95/1 66/88/1 65/98/1
f 72/92/2 68/89/2 66/88/2 70/95/2
f 73/99/6 74/100/6 76/101/6 75/102/6
f 75/103/1 76/101/1 80/104/1 79/105/1
f 79/106/5 80/104/5 78/107/5 77/108/5
f 77/109/3 78/107/3 74/100/3 73/110/3
f 80/104/4 76/101/4 74/100/4 78/107/4

Some files were not shown because too many files have changed in this diff Show More