zoukankan      html  css  js  c++  java
  • CALayer的锚点

    position是layer中的anchorPoint点在superLayer中的位置坐标。因此可以说, position点是相对suerLayer的,anchorPoint点是相对layer的,两者是相对不同的坐标空间的一个重合点。

    anchorPoint的默认值为 (0.5,0.5),也就是anchorPoint默认在layer的中心点。计算 position的值便可以用下面的公式计算:

    position.x = frame.origin.x + 0.5 * bounds.size.width;  
    position.y = frame.origin.y + 0.5 * bounds.size.height;  
    

    里面的0.5是因为anchorPoint取默认值,

      通用的公式应该是:

    position.x = frame.origin.x + anchorPoint.x * bounds.size.width;  
    position.y = frame.origin.y + anchorPoint.y * bounds.size.height;

     anchorPoint和position互不影响,受影响的只有frame。frame与anchorPoint和position的关系

    frame.origin.x = position.x - anchorPoint.x * bounds.size.width;  
    frame.origin.y = position.y - anchorPoint.y * bounds.size.height;  

     总结:

    1、position是layer中的anchorPoint在superLayer中的位置坐标。 
    2、frame、position与anchorPoint有以下关系:

    frame.origin.x = position.x - anchorPoint.x * bounds.size.width;  
    frame.origin.y = position.y - anchorPoint.y * bounds.size.height;  

     

  • 相关阅读:
    JMXRemote Source Downloads? Circular? 规格严格
    Java Heap Dump3 规格严格
    Java Heap Dump2 规格严格
    Java 时区总结 规格严格
    Java HeapDump 规格严格
    JDK 动态代理 规格严格
    常用日语100句
    Wine 1.0发布日期已定!
    细节的感动
    Blog正式改名
  • 原文地址:https://www.cnblogs.com/jinlongyu123/p/7485458.html
Copyright © 2011-2022 走看看