6 instantiations of Size3D
PresentationCore (4)
Core\CSharp\System\Windows\Media3D\Generated\Size3D.cs (1)
202value = new Size3D(
Core\CSharp\System\Windows\Media3D\Rect3D.cs (1)
188return new Size3D(_sizeX, _sizeY, _sizeZ);
Core\CSharp\System\Windows\Media3D\Size3D.cs (1)
194Size3D empty = new Size3D();
Core\CSharp\System\Windows\Media3D\Vector3D.cs (1)
473return new Size3D(Math.Abs(vector._x), Math.Abs(vector._y), Math.Abs(vector._z));
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8981bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Media3D.Size3D(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1534case KnownElements.Size3D: o = new System.Windows.Media.Media3D.Size3D(); break;
36 references to Size3D
PresentationCore (33)
Core\CSharp\System\Windows\Media3d\Converters\Generated\Size3DValueSerializer.cs (5)
62if (!(value is Size3D)) 78return Size3D.Parse(value ); 92if (value is Size3D) 94Size3D instance = (Size3D) value;
Core\CSharp\System\Windows\Media3D\Generated\Size3D.cs (14)
73public static bool operator == (Size3D size1, Size3D size2) 91public static bool operator != (Size3D size1, Size3D size2) 107public static bool Equals (Size3D size1, Size3D size2) 134if ((null == o) || !(o is Size3D)) 139Size3D value = (Size3D)o; 140return Size3D.Equals(this,value); 154public bool Equals(Size3D value) 156return Size3D.Equals(this, value); 184public static Size3D Parse(string source) 190Size3D value;
Core\CSharp\System\Windows\Media3D\Generated\Size3DConverter.cs (4)
106return Size3D.Parse(source); 128if (destinationType != null && value is Size3D) 130Size3D instance = (Size3D)value;
Core\CSharp\System\Windows\Media3D\Rect3D.cs (3)
51public Rect3D(Point3D location, Size3D size) 181public Size3D Size 186return Size3D.Empty;
Core\CSharp\System\Windows\Media3D\Size3D.cs (6)
63public static Size3D Empty 173public static explicit operator Vector3D(Size3D size) 183public static explicit operator Point3D(Size3D size) 192private static Size3D CreateEmptySize3D() 194Size3D empty = new Size3D(); 206private readonly static Size3D s_empty = CreateEmptySize3D();
Core\CSharp\System\Windows\Media3D\Vector3D.cs (1)
471public static explicit operator Size3D(Vector3D vector)
PresentationFramework (3)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
659case 567: t = () => typeof(Size3D); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8979typeof(System.Windows.Media.Media3D.Size3D),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6111case KnownElements.Size3D: t = typeof(System.Windows.Media.Media3D.Size3D); break;