Added missing summeries #2
This commit is contained in:
parent
31777faa11
commit
c8db1ce8bc
26 changed files with 261 additions and 36 deletions
|
|
@ -70,7 +70,6 @@ namespace SM.Base.Types
|
|||
/// <summary>
|
||||
/// Sets the X-Component.
|
||||
/// </summary>
|
||||
/// <param name="x">X-Component</param>
|
||||
public virtual void Set(float uniform, bool triggerChanged = true)
|
||||
{
|
||||
X = uniform;
|
||||
|
|
@ -80,8 +79,6 @@ namespace SM.Base.Types
|
|||
/// <summary>
|
||||
/// Adds the value to the components.
|
||||
/// </summary>
|
||||
/// <param name="uniform"></param>
|
||||
/// <param name="triggerChanged"></param>
|
||||
public virtual void Add(float uniform, bool triggerChanged = true)
|
||||
{
|
||||
X += uniform;
|
||||
|
|
|
|||
|
|
@ -49,7 +49,6 @@ namespace SM.Base.Types
|
|||
/// <summary>
|
||||
/// Sets each component to the same value
|
||||
/// </summary>
|
||||
/// <param name="uniform"></param>
|
||||
public override void Set(float uniform, bool triggerChanged = true)
|
||||
{
|
||||
Y = uniform;
|
||||
|
|
|
|||
|
|
@ -65,7 +65,6 @@ namespace SM.Base.Types
|
|||
/// <summary>
|
||||
/// Sets each component to the <see cref="Vector3" /> counter-part.
|
||||
/// </summary>
|
||||
/// <param name="vector"></param>
|
||||
public void Set(Vector3 vector, bool triggerChanged = true)
|
||||
{
|
||||
Set(vector.X, vector.Y, vector.Z, triggerChanged);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue