我想知道是否可以将视图的变换值应用到其CAShapelayer?。如果可能,我如何应用从捏合,平移和旋转手势生成的变换值?我不想应用变换来查看自己。而不是,我想将它应用于子层,CAShapeLayer类。
答案 0 :(得分:0)
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
df = pd.read_csv('gm_2008_region.csv')
df = df.drop('Region', axis=1)
plt.figure()
sns.heatmap(df.corr(), square=True, cmap='RdYlGn')
plt.show()
继承自{p> CALayer
,具有基于3D的原生转换属性CAShapelLayer
。但是,您也可以轻松使用2D变换(如UIView所使用的那样)。只需使用图层的CATransform3D transform
方法。