# Apartment Floor Plan: 3 BHK to 4 BHK Conversion An architectural floor plan showing a 1,500 sq ft apartment with proposed modifications to convert from 3 BHK to 4 BHK. Demonstrates architectural drawing conventions, room layouts, proposed changes with dotted lines, and area comparison tables. ## Key Patterns Used - **Architectural floor plan**: Top-down view with walls, doors, windows - **Proposed modifications**: Dotted red lines for new walls - **Room color coding**: Light fills to distinguish room types - **Circulation paths**: Arrows showing new access routes - **Data table**: Before/after area comparison with highlighting - **Architectural symbols**: North arrow, scale bar, door swings ## Diagram Type This is an **architectural floor plan** with: - **Plan view**: Top-down orthographic projection - **Overlay technique**: Existing structure + proposed changes - **Quantitative data**: Area measurements and comparison table ## Architectural Drawing Elements ### Wall Styles ```xml ``` ```css .wall { stroke: var(--text-primary); stroke-width: 6; fill: none; stroke-linecap: square; } .wall-thin { stroke: var(--text-primary); stroke-width: 3; fill: none; } .proposed-wall { stroke: #A32D2D; stroke-width: 4; fill: none; stroke-dasharray: 8 4; } ``` ### Door Symbols ```xml ``` ```css .door { stroke: var(--text-secondary); stroke-width: 1.5; fill: none; } .door-swing { stroke: var(--text-tertiary); stroke-width: 1; fill: none; stroke-dasharray: 3 2; } ``` ### Window Symbols ```xml ``` ```css .window { stroke: var(--text-primary); stroke-width: 1; fill: var(--bg-primary); } .window-glass { stroke: #378ADD; stroke-width: 2; fill: none; } ``` ### Room Fills ```xml ``` ```css .room-master { fill: rgba(206, 203, 246, 0.3); } /* purple tint */ .room-bed2 { fill: rgba(159, 225, 203, 0.3); } /* teal tint */ .room-bed3 { fill: rgba(250, 199, 117, 0.3); } /* amber tint */ .room-living { fill: rgba(245, 196, 179, 0.3); } /* coral tint */ .room-kitchen { fill: rgba(237, 147, 177, 0.3); } /* pink tint */ .room-bath { fill: rgba(133, 183, 235, 0.3); } /* blue tint */ .room-new { fill: rgba(163, 45, 45, 0.15); } /* red tint for proposed */ ``` ### Support Fixtures ```xml Counter ``` ```css .balcony { fill: none; stroke: var(--text-secondary); stroke-width: 2; stroke-dasharray: 6 3; } .balcony-fill { fill: rgba(93, 202, 165, 0.1); } ``` ### Room Labels ```xml MASTER BEDROOM 195 sq ft BEDROOM 4 (NEW) ``` ```css .room-label { font-family: system-ui; font-size: 11px; fill: var(--text-primary); font-weight: 500; } .area-label { font-family: system-ui; font-size: 9px; fill: var(--text-tertiary); } ``` ### Circulation Arrow ```xml New corridor access ``` ```css .circulation { stroke: #3B6D11; stroke-width: 2; fill: none; } .circulation-fill { fill: #3B6D11; } ``` ### North Arrow and Scale Bar ```xml N 0 5' 10' ``` ## Area Comparison Table ### Table Structure ```xml Room Master Bedroom 195 Bedroom 4 (NEW) +100 TOTAL CARPET AREA ``` ```css .table-header { fill: var(--bg-secondary); } .table-row { fill: var(--bg-primary); stroke: var(--border); stroke-width: 0.5; } .table-row-alt { fill: var(--bg-tertiary); stroke: var(--border); stroke-width: 0.5; } .table-highlight { fill: rgba(163, 45, 45, 0.1); stroke: #A32D2D; stroke-width: 0.5; } ``` ## Layout Notes - **ViewBox**: 800×780 (portrait for floor plan + table) - **Scale**: 10px = 1 foot (apartment ~50ft × 33ft) - **Floor plan origin**: Offset at (50, 60) for margins - **Wall thickness**: 6px outer, 3px inner (represents ~6" walls) - **Room labels**: Centered in each room with area below - **Table placement**: Below floor plan with full width ## Color Coding | Element | Color | Usage | |---------|-------|-------| | Proposed walls | Red (#A32D2D) dotted | New construction | | New room fill | Red 15% opacity | Bedroom 4 area | | Circulation | Green (#3B6D11) | New access path | | Window glass | Blue (#378ADD) | Glass indication | | Bedrooms | Purple/Teal/Amber tints | Room differentiation | | Wet areas | Blue tint | Bathrooms | | Living | Coral tint | Common areas | ## When to Use This Pattern Use this diagram style for: - Apartment/house floor plans - Office layout planning - Renovation proposals showing before/after - Space planning with area calculations - Real estate marketing materials - Interior design presentations - Building permit documentation