public void Update(TextBox boxX, TextBox boxY, TextBox boxZ, TextBox boxRoll, TextBox boxPitch, TextBox boxYaw ) { XYZAttribute.SetDoubleArrayFromStringArray(new string[] { boxX.Text, boxY.Text, boxZ.Text }); RPYAttribute.SetDoubleArrayFromStringArray(new string[] { boxRoll.Text, boxPitch.Text, boxYaw.Text }); }
public void Update(DomainUpDown boxRed, DomainUpDown boxGreen, DomainUpDown boxBlue, DomainUpDown boxAlpha) { RGBAAttribute.SetDoubleArrayFromStringArray( new string[] { boxRed.Text, boxGreen.Text, boxBlue.Text, boxAlpha.Text }); }
public void Update(TextBox boxX, TextBox boxY, TextBox boxZ) { XYZAttribute.SetDoubleArrayFromStringArray(new string[] { boxX.Text, boxY.Text, boxZ.Text }); }