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:
parent
eabf6b6bfb
commit
70666bd8dd
17
Source/model/geom2d/TransformedLocus.swift
Normal file
17
Source/model/geom2d/TransformedLocus.swift
Normal 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
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user