mirror of
https://github.com/penpot/penpot.git
synced 2025-04-04 11:01:20 -05:00
Activate by default path simplification.
This commit is contained in:
parent
e701793e44
commit
9e904e4247
2 changed files with 9 additions and 5 deletions
|
@ -195,8 +195,10 @@
|
|||
|
||||
dx (- 0 minx)
|
||||
dy (- 0 miny)
|
||||
;; _ (println "Initial number of points:" (count points))
|
||||
points (mapv #(gpt/add % [dx dy]) points)
|
||||
;; points (path/simplify points)
|
||||
points (path/simplify points 0.1)
|
||||
;; _ (println "Final number of points:" (count points))
|
||||
width (- maxx minx)
|
||||
height (- maxy miny)]
|
||||
|
||||
|
@ -227,7 +229,7 @@
|
|||
|
||||
(defn- on-init-draw-generic
|
||||
[shape]
|
||||
(let [mouse (->> (rx/sample 10 wb/mouse-viewport-s)
|
||||
(let [mouse (->> wb/mouse-viewport-s
|
||||
(rx/mapcat (fn [point]
|
||||
(if @wb/alignment-ref
|
||||
(uds/align-point point)
|
||||
|
|
|
@ -8,6 +8,8 @@
|
|||
(:require [uxbox.util.geom.path-impl-simplify :as impl-simplify]))
|
||||
|
||||
(defn simplify
|
||||
[points]
|
||||
(let [points (into-array points)]
|
||||
(into [] (impl-simplify/simplify points 10 true))))
|
||||
([points]
|
||||
(simplify points 0.1))
|
||||
([points tolerance]
|
||||
(let [points (into-array points)]
|
||||
(into [] (impl-simplify/simplify points tolerance true)))))
|
||||
|
|
Loading…
Add table
Reference in a new issue