• Home
  • Raw
  • Download

Lines Matching refs:VectorValue

73     static const VectorValue g_default_vec_0   = {  0,   0},  in attachMatrix2D()
79 auto bound = this->bindProperty<VectorValue>(t["a"], ascope, in attachMatrix2D()
80 [adapter](const VectorValue& a) { in attachMatrix2D()
81 adapter->setAnchorPoint(ValueTraits<VectorValue>::As<SkPoint>(a)); in attachMatrix2D()
83 bound |= this->bindProperty<VectorValue>(t["p"], ascope, in attachMatrix2D()
84 [adapter](const VectorValue& p) { in attachMatrix2D()
85 adapter->setPosition(ValueTraits<VectorValue>::As<SkPoint>(p)); in attachMatrix2D()
87 bound |= this->bindProperty<VectorValue>(t["s"], ascope, in attachMatrix2D()
88 [adapter](const VectorValue& s) { in attachMatrix2D()
89 adapter->setScale(ValueTraits<VectorValue>::As<SkVector>(s)); in attachMatrix2D()
121 static const VectorValue g_default_vec_0 = { 0, 0, 0}, in attachMatrix3D()
127 auto bound = this->bindProperty<VectorValue>(t["a"], ascope, in attachMatrix3D()
128 [adapter](const VectorValue& a) { in attachMatrix3D()
131 bound |= this->bindProperty<VectorValue>(t["p"], ascope, in attachMatrix3D()
132 [adapter](const VectorValue& p) { in attachMatrix3D()
135 bound |= this->bindProperty<VectorValue>(t["s"], ascope, in attachMatrix3D()
136 [adapter](const VectorValue& s) { in attachMatrix3D()
142 bound |= this->bindProperty<VectorValue>(t["or"], ascope, in attachMatrix3D()
143 [adapter](const VectorValue& o) { in attachMatrix3D()
256 this->bindProperty<VectorValue>(jcolor[prop_name], ascope, in attachColor()
257 [color_node](const VectorValue& c) { in attachColor()
258 color_node->setColor(ValueTraits<VectorValue>::As<SkColor>(c)); in attachColor()