mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
11 lines
297 B
Swift
11 lines
297 B
Swift
import LayoutKit
|
|
|
|
extension DivTransform {
|
|
func makeAnchorPoint(expressionResolver: ExpressionResolver) -> AnchorPoint {
|
|
AnchorPoint(
|
|
x: pivotX.makeAnchorValue(expressionResolver: expressionResolver),
|
|
y: pivotY.makeAnchorValue(expressionResolver: expressionResolver)
|
|
)
|
|
}
|
|
}
|