public override object ConvertFrom( ITypeDescriptorContext context, CultureInfo culture, object value) { if (value.GetType() == typeof(string)) { return((object)Point3L.Parse((string)value)); } return(base.ConvertFrom(context, culture, value)); }
public Vector3L(Point3L from) { this.X = from.X; this.Y = from.Y; this.Z = from.Z; }