1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-11-11 01:42:35 +03:00

Add transformed locus

This commit is contained in:
Yuri Strot 2018-05-21 12:45:30 +07:00
parent eabf6b6bfb
commit 70666bd8dd

View File

@ -0,0 +1,17 @@
//
// TransformedLocus.swift
// Macaw
//
// Created by Yuri Strot on 5/21/18.
//
open class TransformedLocus: Locus {
public let locus: Locus
public let transform: Transform
public init(locus: Locus, transform: Transform) {
self.locus = locus
self.transform = transform
}
}