示例#1
0
 /// <summary>
 ///     Creates and returns a new instance of the <see cref="Float3D" /> class from this instance
 /// </summary>
 /// <param name="color">The object to create the <see cref="Float3D" /> instance from</param>
 /// <returns>The newly created <see cref="Float3D" /> instance</returns>
 public static Float3D ToFloat3D(this Color color)
 {
     return(Float3D.FromColor(color));
 }