docs(core): Parent & Child Methods
This commit is contained in:
		| @@ -78,7 +78,21 @@ public interface ITransform : IEnumerable<ITransform> | |||||||
|     /// </summary> |     /// </summary> | ||||||
|     IReadOnlyList<ITransform> Children { get; } |     IReadOnlyList<ITransform> Children { get; } | ||||||
|  |  | ||||||
|  |     /// <summary> | ||||||
|  |     /// Sets the parent <see cref="ITransform"/> of this <see cref="ITransform"/>. | ||||||
|  |     /// </summary> | ||||||
|  |     /// <param name="transform">The parent <see cref="ITransform"/> to set.</param> | ||||||
|     void SetParent(ITransform? transform); |     void SetParent(ITransform? transform); | ||||||
|  |  | ||||||
|  |     /// <summary> | ||||||
|  |     /// Adds a child <see cref="ITransform"/> to this <see cref="ITransform"/>. | ||||||
|  |     /// </summary> | ||||||
|  |     /// <param name="transform">The child <see cref="ITransform"/> to add.</param> | ||||||
|     void AddChild(ITransform transform); |     void AddChild(ITransform transform); | ||||||
|  |  | ||||||
|  |     /// <summary> | ||||||
|  |     /// Removes a child <see cref="ITransform"/> from this <see cref="ITransform"/>. | ||||||
|  |     /// </summary> | ||||||
|  |     /// <param name="transform">The child <see cref="ITransform"/> to remove.</param> | ||||||
|     void RemoveChild(ITransform transform); |     void RemoveChild(ITransform transform); | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user