SVG Graphics Geometry
Guide
css-matrix
Guide
css-matrix
  • Part 0. SVG coordinate systems

    • viewBox와 user space
    • transform attribute와 matrix
  • Part 1. Path grammar

    • path d 명령어 — M, L, Z
    • H, V — 축 정렬 직선
    • C — cubic Bézier
    • Q — quadratic Bézier
    • S, T — smooth continuation
    • A — elliptical arc
    • path bounding box
  • Part 2. Stroke geometry

    • 점에서 stroke까지의 거리
    • join, cap, miter limit
    • stroke align과 outline 개념
    • miter length 공식
  • Part 3. Fill rules

    • nonzero vs evenodd
    • fill hit testing
  • Part 4. Path sampling

    • flatten tolerance
    • path length
    • point at length와 tangent
  • Part 5. Paint servers

    • linearGradient 좌표
    • clipPath와 mask 개념
  • Part 6. Path editor capstone

    • path handle 모델
    • handle hit testing
    • handle drag로 segment 갱신
    • mini path editor — SVG round-trip
  • Part 7. Fill & winding deep dive

    • winding vs ray casting
    • compound path — 여러 subpath
    • self-intersection
    • path boolean
    • fill vs stroke hit 우선순위
    • scanline parity
  • Part 8. Pattern & gradient

    • radialGradient
    • pattern tile
    • gradientUnits와 spreadMethod
  • Part 9. SVG filter & Figma effects

    • Figma DROP_SHADOW → SVG filter
    • filter chain 개요
    • blur · offset · merge
    • inner shadow
    • layer blur vs background blur
    • Figma effect 매핑표 전체
  • Part 10. Figma ↔ SVG bridge

    • vector network vs path d
    • fill · stroke export
    • boolean operations export
    • mask · clip export
  • Part 11. Icon design

    • pixel grid · optical alignment
    • fill vs stroke icons
    • symbol · sprite · currentColor
    • path simplification
  • Appendix A. SVG in CSS

    • currentColor 아이콘
    • sprite · data URI
    • viewBox · export 최적화
  • Appendix B. Engine extras

    • stroke-dasharray · offset path
    • adaptive flatten
    • arc → cubic 변환
    • multi-subpath handle editing
  • Part 12. Foundations primer

    • SVG 한 장 지도
    • 좌표 스택 — pointer → user space
  • Part 13. Figma ↔ SVG (deep)

    • Figma paint types & gap map
    • radial · angular gradient export
    • image · pattern fill
    • stroke align export
    • blend mode · layer opacity
  • Part 14. SVG spec breadth

    • markers — 화살표와 dash 끝
    • text · textPath
    • paint-order · opacity · filters
    • arc flatten 통합

Figma effect → SVG filter 매핑

svg-matrix-core의 FIGMA_EFFECT_FILTER_MAP · figmaEffectToSvgFilter · 039강 데모가 참조하는 표입니다.

Figma effect.typeSVGCore 함수
DROP_SHADOW<feDropShadow> 또는 blur→offset→merge 체인figmaDropShadowToSvgFilter, buildDropShadowFilterChain
INNER_SHADOWblur + composite로 shape 안쪽 clipfigmaInnerShadowToSvgFilter
LAYER_BLURfeGaussianBlur on SourceGraphicfigmaLayerBlurToSvgFilter
BACKGROUND_BLURfeGaussianBlur on BackgroundImagefigmaBackgroundBlurToSvgFilter

공통 필드

FigmaSVG
radius (blur)stdDeviation ≈ radius / 2 (figmaBlurRadiusToStdDeviation)
offset.x/yfeOffset dx / dy
color (0–1 RGBA)flood-color, flood-opacity
visiblefilter 노드 포함 여부

filter region

blur는 주변 픽셀을 샘플하므로 <filter x="-50%" y="-50%" width="200%" height="200%">처럼 region을 넓혀 잘림을 줄입니다. buildFilterRegion() 참고.

dispatch API

import { figmaEffectToSvgFilter } from "svg-matrix-core";

const { filterAttr, markup } = figmaEffectToSvgFilter({
  type: "INNER_SHADOW",
  offset: { x: 0, y: 4 },
  radius: 8,
  color: { r: 0, g: 0, b: 0, a: 0.35 }
});

CSS 대응

FigmaCSS
DROP_SHADOWbox-shadow / filter: drop-shadow()
LAYER_BLURfilter: blur()
BACKGROUND_BLURbackdrop-filter: blur()

SVG filter는 DOM/CSS export와 Figma plugin JSON 양쪽에서 같은 markup을 재사용할 수 있습니다.

최근 수정: 26. 5. 16. PM 3:04
Contributors: jinho.park.s3, Cursor