mirror of
https://github.com/penpot/penpot.git
synced 2026-08-11 15:29:06 +00:00
16 lines
578 B
Clojure
16 lines
578 B
Clojure
;; This Source Code Form is subject to the terms of the Mozilla Public
|
|
;; License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
;;
|
|
;; Copyright (c) KALEIDOS INC Sucursal en España SL
|
|
|
|
(ns app.graph.project.transforms
|
|
"Derived graph links (instances, tokens, nested containment, etc.).
|
|
|
|
Stub for now: beadpot's `apply_transformations` will be ported here.")
|
|
|
|
(defn apply-transforms!
|
|
"Apply derived transformations to an already projected graph."
|
|
[_system _db-path _data _file]
|
|
{:transforms 0})
|