Lines Matching refs:VectorValue
72 static const VectorValue g_default_vec_0 = { 0, 0}, in attachMatrix2D()
78 auto bound = this->bindProperty<VectorValue>(t["a"], in attachMatrix2D()
79 [adapter](const VectorValue& a) { in attachMatrix2D()
80 adapter->setAnchorPoint(ValueTraits<VectorValue>::As<SkPoint>(a)); in attachMatrix2D()
82 bound |= this->bindProperty<VectorValue>(t["p"], in attachMatrix2D()
83 [adapter](const VectorValue& p) { in attachMatrix2D()
84 adapter->setPosition(ValueTraits<VectorValue>::As<SkPoint>(p)); in attachMatrix2D()
86 bound |= this->bindProperty<VectorValue>(t["s"], in attachMatrix2D()
87 [adapter](const VectorValue& s) { in attachMatrix2D()
88 adapter->setScale(ValueTraits<VectorValue>::As<SkVector>(s)); in attachMatrix2D()
121 static const VectorValue g_default_vec_0 = { 0, 0, 0}, in attachMatrix3D()
129 auto bound = this->bindProperty<VectorValue>(t["a"], in attachMatrix3D()
130 [adapter](const VectorValue& a) { in attachMatrix3D()
133 bound |= this->bindProperty<VectorValue>(t["p"], in attachMatrix3D()
134 [adapter](const VectorValue& p) { in attachMatrix3D()
137 bound |= this->bindProperty<VectorValue>(t["s"], in attachMatrix3D()
138 [adapter](const VectorValue& s) { in attachMatrix3D()
144 bound |= this->bindProperty<VectorValue>(t["or"], in attachMatrix3D()
145 [adapter](const VectorValue& o) { in attachMatrix3D()
260 this->bindProperty<VectorValue>(jcolor[prop_name], in attachColor()
261 [color_node](const VectorValue& c) { in attachColor()
262 color_node->setColor(ValueTraits<VectorValue>::As<SkColor>(c)); in attachColor()