diff --git a/Source/Compatibility/Audio/OpenAL/AL/AL.cs b/Source/Compatibility/Audio/OpenAL/AL/AL.cs index 8a12923f..50f4de1c 100644 --- a/Source/Compatibility/Audio/OpenAL/AL/AL.cs +++ b/Source/Compatibility/Audio/OpenAL/AL/AL.cs @@ -143,15 +143,15 @@ namespace OpenTK.Audio public static extern int Get(ALGetInteger param); // AL_API ALint AL_APIENTRY alGetInteger( ALenum param ); - /// This function returns a floating point OpenAL state. + /// This function returns a floating-point OpenAL state. /// the state to be queried: DopplerFactor, SpeedOfSound. - /// The floating point state described by param will be returned. + /// The floating-point state described by param will be returned. [DllImport(AL.Lib, EntryPoint = "alGetFloat", ExactSpelling = true, CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity()] public static extern float Get(ALGetFloat param); // AL_API ALfloat AL_APIENTRY alGetFloat( ALenum param ); /* disabled due to no token using it - /// This function returns a double precision floating point OpenAL state. + /// This function returns a double-precision floating-point OpenAL state. /// the state to be queried: AL_DOPPLER_FACTOR, AL_SPEED_OF_SOUND, AL_DISTANCE_MODEL /// The double value described by param will be returned. [DllImport( AL.Lib, EntryPoint = "alGetDouble", ExactSpelling = true, CallingConvention = AL.Style ), SuppressUnmanagedCodeSecurity( )] @@ -206,14 +206,14 @@ namespace OpenTK.Audio #region Set Listener parameters - /// This function sets a floating point property for the listener. + /// This function sets a floating-point property for the listener. /// The name of the attribute to be set: ALListenerf.Gain /// The float value to set the attribute to. [DllImport(AL.Lib, EntryPoint = "alListenerf", ExactSpelling = true, CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity()] public static extern void Listener(ALListenerf param, float value); // AL_API void AL_APIENTRY alListenerf( ALenum param, ALfloat value ); - /// This function sets a floating point property for the listener. + /// This function sets a floating-point property for the listener. /// The name of the attribute to set: ALListener3f.Position, ALListener3f.Velocity /// The value to set the attribute to. /// The value to set the attribute to. @@ -234,9 +234,9 @@ namespace OpenTK.Audio unsafe private static extern void ListenerPrivate(ALListenerfv param, float* values); // AL_API void AL_APIENTRY alListenerfv( ALenum param, const ALfloat* values ); - /// This function sets a floating point-vector property of the listener. + /// This function sets a floating-point vector property of the listener. /// The name of the attribute to be set: ALListener3f.Position, ALListener3f.Velocity, ALListenerfv.Orientation - /// Pointer to floating point-vector values. + /// Pointer to floating-point vector values. public static void Listener(ALListenerfv param, ref float[] values) { unsafe @@ -282,18 +282,18 @@ namespace OpenTK.Audio #region Get Listener parameters - /// This function retrieves a floating point property of the listener. + /// This function retrieves a floating-point property of the listener. /// the name of the attribute to be retrieved: ALListenerf.Gain - /// a pointer to the floating point value being retrieved. + /// a pointer to the floating-point value being retrieved. [DllImport(AL.Lib, EntryPoint = "alGetListenerf", ExactSpelling = true, CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity()] public static extern void GetListener(ALListenerf param, [Out] out float value); // AL_API void AL_APIENTRY alGetListenerf( ALenum param, ALfloat* value ); - /// This function retrieves a set of three floating point values from a property of the listener. + /// This function retrieves a set of three floating-point values from a property of the listener. /// The name of the attribute to be retrieved: ALListener3f.Position, ALListener3f.Velocity - /// Pointers to the three floating point being retrieved. - /// Pointers to the three floating point being retrieved. - /// Pointers to the three floating point being retrieved. + /// Pointers to the three floating-point being retrieved. + /// Pointers to the three floating-point being retrieved. + /// Pointers to the three floating-point being retrieved. [DllImport(AL.Lib, EntryPoint = "alGetListener3f", ExactSpelling = true, CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity()] public static extern void GetListener(ALListener3f param, [Out] out float value1, [Out] out float value2, [Out] out float value3); // AL_API void AL_APIENTRY alGetListener3f( ALenum param, ALfloat *value1, ALfloat *value2, ALfloat *value3 ); @@ -306,9 +306,9 @@ namespace OpenTK.Audio GetListener(param, out values.X, out values.Y, out values.Z); } - /// This function retrieves a floating point-vector property of the listener. You must pin it manually. + /// This function retrieves a floating-point vector property of the listener. You must pin it manually. /// the name of the attribute to be retrieved: ALListener3f.Position, ALListener3f.Velocity, ALListenerfv.Orientation - /// A pointer to the floating point-vector value being retrieved. + /// A pointer to the floating-point vector value being retrieved. [CLSCompliant(false), DllImport(AL.Lib, EntryPoint = "alGetListenerfv", ExactSpelling = true, CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity()] unsafe public static extern void GetListener(ALListenerfv param, float* values); // AL_API void AL_APIENTRY alGetListenerfv( ALenum param, ALfloat* values ); @@ -540,7 +540,7 @@ namespace OpenTK.Audio #region Sourcef - /// This function sets a floating point property of a source. + /// This function sets a floating-point property of a source. /// Source name whose attribute is being set /// The name of the attribute to set: ALSourcef.Pitch, Gain, MinGain, MaxGain, MaxDistance, RolloffFactor, ConeOuterGain, ConeInnerAngle, ConeOuterAngle, ReferenceDistance, EfxAirAbsorptionFactor, EfxRoomRolloffFactor, EfxConeOuterGainHighFrequency. /// The value to set the attribute to. @@ -548,7 +548,7 @@ namespace OpenTK.Audio public static extern void Source(uint sid, ALSourcef param, float value); // AL_API void AL_APIENTRY alSourcef( ALuint sid, ALenum param, ALfloat value ); - /// This function sets a floating point property of a source. + /// This function sets a floating-point property of a source. /// Source name whose attribute is being set /// The name of the attribute to set: ALSourcef.Pitch, Gain, MinGain, MaxGain, MaxDistance, RolloffFactor, ConeOuterGain, ConeInnerAngle, ConeOuterAngle, ReferenceDistance, EfxAirAbsorptionFactor, EfxRoomRolloffFactor, EfxConeOuterGainHighFrequency. /// The value to set the attribute to. @@ -562,7 +562,7 @@ namespace OpenTK.Audio #region Source3f - /// This function sets a source property requiring three floating point values. + /// This function sets a source property requiring three floating-point values. /// Source name whose attribute is being set. /// The name of the attribute to set: ALSource3f.Position, Velocity, Direction. /// The three ALfloat values which the attribute will be set to. @@ -572,7 +572,7 @@ namespace OpenTK.Audio public static extern void Source(uint sid, ALSource3f param, float value1, float value2, float value3); // AL_API void AL_APIENTRY alSource3f( ALuint sid, ALenum param, ALfloat value1, ALfloat value2, ALfloat value3 ); - /// This function sets a source property requiring three floating point values. + /// This function sets a source property requiring three floating-point values. /// Source name whose attribute is being set. /// The name of the attribute to set: ALSource3f.Position, Velocity, Direction. /// The three ALfloat values which the attribute will be set to. @@ -584,7 +584,7 @@ namespace OpenTK.Audio Source((uint)sid, param, value1, value2, value3); } - /// This function sets a source property requiring three floating point values. + /// This function sets a source property requiring three floating-point values. /// Source name whose attribute is being set. /// The name of the attribute to set: ALSource3f.Position, Velocity, Direction. /// A Math.Vector3 which the attribute will be set to. @@ -594,7 +594,7 @@ namespace OpenTK.Audio Source(sid, param, values.X, values.Y, values.Z); } - /// This function sets a source property requiring three floating point values. + /// This function sets a source property requiring three floating-point values. /// Source name whose attribute is being set. /// The name of the attribute to set: ALSource3f.Position, Velocity, Direction. /// A Math.Vector3 which the attribute will be set to. @@ -702,18 +702,18 @@ namespace OpenTK.Audio #region GetSourcef - /// This function retrieves a floating point property of a source. + /// This function retrieves a floating-point property of a source. /// Source name whose attribute is being retrieved. /// The name of the attribute to set: ALSourcef.Pitch, Gain, MinGain, MaxGain, MaxDistance, RolloffFactor, ConeOuterGain, ConeInnerAngle, ConeOuterAngle, ReferenceDistance, EfxAirAbsorptionFactor, EfxRoomRolloffFactor, EfxConeOuterGainHighFrequency. - /// A pointer to the floating point value being retrieved + /// A pointer to the floating-point value being retrieved [CLSCompliant(false), DllImport(AL.Lib, EntryPoint = "alGetSourcef", ExactSpelling = true, CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity()] public static extern void GetSource(uint sid, ALSourcef param, [Out] out float value); // AL_API void AL_APIENTRY alGetSourcef( ALuint sid, ALenum param, ALfloat* value ); - /// This function retrieves a floating point property of a source. + /// This function retrieves a floating-point property of a source. /// Source name whose attribute is being retrieved. /// The name of the attribute to set: ALSourcef.Pitch, Gain, MinGain, MaxGain, MaxDistance, RolloffFactor, ConeOuterGain, ConeInnerAngle, ConeOuterAngle, ReferenceDistance, EfxAirAbsorptionFactor, EfxRoomRolloffFactor, EfxConeOuterGainHighFrequency. - /// A pointer to the floating point value being retrieved + /// A pointer to the floating-point value being retrieved [CLSCompliant(true)] public static void GetSource(int sid, ALSourcef param, out float value) { @@ -724,7 +724,7 @@ namespace OpenTK.Audio #region GetSource3f - /// This function retrieves three floating point values representing a property of a source. + /// This function retrieves three floating-point values representing a property of a source. /// Source name whose attribute is being retrieved. /// the name of the attribute being retrieved: ALSource3f.Position, Velocity, Direction. /// Pointer to the value to retrieve. @@ -734,7 +734,7 @@ namespace OpenTK.Audio public static extern void GetSource(uint sid, ALSource3f param, [Out] out float value1, [Out] out float value2, [Out] out float value3); // AL_API void AL_APIENTRY alGetSource3f( ALuint sid, ALenum param, ALfloat* value1, ALfloat* value2, ALfloat* value3); - /// This function retrieves three floating point values representing a property of a source. + /// This function retrieves three floating-point values representing a property of a source. /// Source name whose attribute is being retrieved. /// the name of the attribute being retrieved: ALSource3f.Position, Velocity, Direction. /// Pointer to the value to retrieve. @@ -746,7 +746,7 @@ namespace OpenTK.Audio GetSource((uint)sid, param, out value1, out value2, out value3); } - /// This function retrieves three floating point values representing a property of a source. + /// This function retrieves three floating-point values representing a property of a source. /// Source name whose attribute is being retrieved. /// the name of the attribute being retrieved: ALSource3f.Position, Velocity, Direction. /// A Math.Vector3 to retrieve the values to. @@ -756,7 +756,7 @@ namespace OpenTK.Audio GetSource(sid, param, out values.X, out values.Y, out values.Z); } - /// This function retrieves three floating point values representing a property of a source. + /// This function retrieves three floating-point values representing a property of a source. /// Source name whose attribute is being retrieved. /// the name of the attribute being retrieved: ALSource3f.Position, Velocity, Direction. /// A Math.Vector3 to retrieve the values to. diff --git a/Source/Compatibility/Audio/OpenAL/AL/ALEnums.cs b/Source/Compatibility/Audio/OpenAL/AL/ALEnums.cs index 595cace5..0970b9a9 100644 --- a/Source/Compatibility/Audio/OpenAL/AL/ALEnums.cs +++ b/Source/Compatibility/Audio/OpenAL/AL/ALEnums.cs @@ -19,7 +19,7 @@ namespace OpenTK.Audio Invalid = -1, } - ///A list of valid 32-Bits Float Listener/GetListener parameters + ///A list of valid 32-bit Float Listener/GetListener parameters public enum ALListenerf : int { ///Indicate the gain (Volume amplification) applied. Type: float Range: [0.0f - ? ] A value of 1.0 means un-attenuated/unchanged. Each division by 2 equals an attenuation of -6dB. Each multiplicaton with 2 equals an amplification of +6dB. A value of 0.0f is interpreted as zero volume and the channel is effectively disabled. @@ -46,7 +46,7 @@ namespace OpenTK.Audio Orientation = 0x100F, } - ///A list of valid 32-Bits Float Source/GetSource parameters + ///A list of valid 32-bit Float Source/GetSource parameters public enum ALSourcef : int { ///Source specific reference distance. Type: float Range: [0.0f - float.PositiveInfinity] At 0.0f, no distance attenuation occurs. Type: float Default: 1.0f. @@ -106,7 +106,7 @@ namespace OpenTK.Audio Direction = 0x1005, } - ///A list of valid 8-Bits boolean Source/GetSource parameters + ///A list of valid 8-bit boolean Source/GetSource parameters public enum ALSourceb : int { ///Indicate that the Source has relative coordinates. Type: bool Range: [True, False] @@ -216,16 +216,16 @@ namespace OpenTK.Audio ///Sound samples: Format specifier. public enum ALFormat : int { - ///1 Channel, 8 Bits per sample. + ///1 Channel, 8 bits per sample. Mono8 = 0x1100, - ///1 Channel, 16 Bits per sample. + ///1 Channel, 16 bits per sample. Mono16 = 0x1101, - ///2 Channels, 8 Bits per sample each. + ///2 Channels, 8 bits per sample each. Stereo8 = 0x1102, - ///2 Channels, 16 Bits per sample each. + ///2 Channels, 16 bits per sample each. Stereo16 = 0x1103, /// 1 Channel, A-law encoded data. Requires Extension: AL_EXT_ALAW @@ -264,56 +264,56 @@ namespace OpenTK.Audio /// 2 Channels, double-precision floating-point data. Requires Extension: AL_EXT_double StereoDoubleExt = 0x10013, - /// Multichannel 5.1, 16 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 5.1, 16-bit data. Requires Extension: AL_EXT_MCFORMATS Multi51Chn16Ext = 0x120B, - /// Multichannel 5.1, 32 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 5.1, 32-bit data. Requires Extension: AL_EXT_MCFORMATS Multi51Chn32Ext = 0x120C, - /// Multichannel 5.1, 8 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 5.1, 8-bit data. Requires Extension: AL_EXT_MCFORMATS Multi51Chn8Ext = 0x120A, - /// Multichannel 6.1, 16 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 6.1, 16-bit data. Requires Extension: AL_EXT_MCFORMATS Multi61Chn16Ext = 0x120E, - /// Multichannel 6.1, 32 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 6.1, 32-bit data. Requires Extension: AL_EXT_MCFORMATS Multi61Chn32Ext = 0x120F, - /// Multichannel 6.1, 8 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 6.1, 8-bit data. Requires Extension: AL_EXT_MCFORMATS Multi61Chn8Ext = 0x120D, - /// Multichannel 7.1, 16 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 7.1, 16-bit data. Requires Extension: AL_EXT_MCFORMATS Multi71Chn16Ext = 0x1211, - /// Multichannel 7.1, 32 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 7.1, 32-bit data. Requires Extension: AL_EXT_MCFORMATS Multi71Chn32Ext = 0x1212, - /// Multichannel 7.1, 8 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 7.1, 8-bit data. Requires Extension: AL_EXT_MCFORMATS Multi71Chn8Ext = 0x1210, - /// Multichannel 4.0, 16 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 4.0, 16-bit data. Requires Extension: AL_EXT_MCFORMATS MultiQuad16Ext = 0x1205, - /// Multichannel 4.0, 32 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 4.0, 32-bit data. Requires Extension: AL_EXT_MCFORMATS MultiQuad32Ext = 0x1206, - /// Multichannel 4.0, 8 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 4.0, 8-bit data. Requires Extension: AL_EXT_MCFORMATS MultiQuad8Ext = 0x1204, - /// 1 Channel rear speaker, 16 Bits data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS + /// 1 Channel rear speaker, 16-bit data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS MultiRear16Ext = 0x1208, - /// 1 Channel rear speaker, 32 Bits data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS + /// 1 Channel rear speaker, 32-bit data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS MultiRear32Ext = 0x1209, - /// 1 Channel rear speaker, 8 Bits data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS + /// 1 Channel rear speaker, 8-bit data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS MultiRear8Ext = 0x1207, } ///A list of valid Int32 GetBuffer parameters public enum ALGetBufferi : int { - ///Sound sample's frequency, in units of Hertz [Hz]. This is the number of samples per second. Half of the sample frequency marks the maximum significant frequency component. + ///Sound sample's frequency, in units of hertz [Hz]. This is the number of samples per second. Half of the sample frequency marks the maximum significant frequency component. Frequency = 0x2001, /// Bit depth of the buffer. Should be 8 or 16. @@ -383,7 +383,7 @@ namespace OpenTK.Audio Extensions = 0xB004, } - ///A list of valid 32-Bits Float AL.Get() parameters + ///A list of valid 32-bit Float AL.Get() parameters public enum ALGetFloat : int { ///Doppler scale. Default 1.0f diff --git a/Source/Compatibility/Audio/OpenAL/AL/EffectsExtension.cs b/Source/Compatibility/Audio/OpenAL/AL/EffectsExtension.cs index b48d6d5a..056832a3 100644 --- a/Source/Compatibility/Audio/OpenAL/AL/EffectsExtension.cs +++ b/Source/Compatibility/Audio/OpenAL/AL/EffectsExtension.cs @@ -351,20 +351,20 @@ namespace OpenTK.Audio //[CLSCompliant(false)] private Delegate_alEffectf Imported_alEffectf; - /// This function is used to set floating point properties on Effect objects. + /// This function is used to set floating-point properties on Effect objects. /// Effect object identifier. /// Effect property to set. - /// Floating point value. + /// Floating-point value. [CLSCompliant(false)] public void Effect(uint eid, EfxEffectf param, float value) { Imported_alEffectf(eid, param, value); } - /// This function is used to set floating point properties on Effect objects. + /// This function is used to set floating-point properties on Effect objects. /// Effect object identifier. /// Effect property to set. - /// Floating point value. + /// Floating-point value. public void Effect(int eid, EfxEffectf param, float value) { @@ -382,7 +382,7 @@ namespace OpenTK.Audio //[CLSCompliant(false)] private Delegate_alEffectfv Imported_alEffectfv; - /// This function is used to set 3 floating point properties on Effect objects. + /// This function is used to set 3 floating-point properties on Effect objects. /// Effect object identifier. /// Effect property to set. /// Pointer to Math.Vector3. @@ -398,7 +398,7 @@ namespace OpenTK.Audio } } - /// This function is used to set 3 floating point properties on Effect objects. + /// This function is used to set 3 floating-point properties on Effect objects. /// Effect object identifier. /// Effect property to set. /// Pointer to Math.Vector3. @@ -456,10 +456,10 @@ namespace OpenTK.Audio //[CLSCompliant(false)] private Delegate_alGetEffectf Imported_alGetEffectf; - /// This function is used to retrieve floating point properties from Effect objects. + /// This function is used to retrieve floating-point properties from Effect objects. /// Effect object identifier. /// Effect property to retrieve. - /// Address where floating point value will be stored. + /// Address where floating-point value will be stored. [CLSCompliant(false)] public void GetEffect(uint eid, EfxEffectf pname, out float value) { @@ -472,10 +472,10 @@ namespace OpenTK.Audio } } - /// This function is used to retrieve floating point properties from Effect objects. + /// This function is used to retrieve floating-point properties from Effect objects. /// Effect object identifier. /// Effect property to retrieve. - /// Address where floating point value will be stored. + /// Address where floating-point value will be stored. public void GetEffect(int eid, EfxEffectf pname, out float value) { @@ -493,7 +493,7 @@ namespace OpenTK.Audio //[CLSCompliant(false)] private Delegate_alGetEffectfv Imported_alGetEffectfv; - /// This function is used to retrieve 3 floating point properties from Effect objects. + /// This function is used to retrieve 3 floating-point properties from Effect objects. /// Effect object identifier. /// Effect property to retrieve. /// A Math.Vector3 to hold the values. @@ -512,7 +512,7 @@ namespace OpenTK.Audio } } - /// This function is used to retrieve 3 floating point properties from Effect objects. + /// This function is used to retrieve 3 floating-point properties from Effect objects. /// Effect object identifier. /// Effect property to retrieve. /// A Math.Vector3 to hold the values. @@ -761,20 +761,20 @@ namespace OpenTK.Audio //[CLSCompliant(false)] private Delegate_alFilterf Imported_alFilterf; - /// This function is used to set floating point properties on Filter objects. + /// This function is used to set floating-point properties on Filter objects. /// Filter object identifier. /// Effect property to set. - /// Floating point value. + /// Floating-point value. [CLSCompliant(false)] public void Filter(uint fid, EfxFilterf param, float value) { Imported_alFilterf(fid, param, value); } - /// This function is used to set floating point properties on Filter objects. + /// This function is used to set floating-point properties on Filter objects. /// Filter object identifier. /// Effect property to set. - /// Floating point value. + /// Floating-point value. public void Filter(int fid, EfxFilterf param, float value) { @@ -829,10 +829,10 @@ namespace OpenTK.Audio //[CLSCompliant(false)] private Delegate_alGetFilterf Imported_alGetFilterf; - /// This function is used to retrieve floating point properties from Filter objects. + /// This function is used to retrieve floating-point properties from Filter objects. /// Filter object identifier. /// Effect property to retrieve. - /// Address where floating point value will be stored. + /// Address where floating-point value will be stored. [CLSCompliant(false)] public void GetFilter(uint fid, EfxFilterf pname, out float value) { @@ -845,10 +845,10 @@ namespace OpenTK.Audio } } - /// This function is used to retrieve floating point properties from Filter objects. + /// This function is used to retrieve floating-point properties from Filter objects. /// Filter object identifier. /// Effect property to retrieve. - /// Address where floating point value will be stored. + /// Address where floating-point value will be stored. public void GetFilter(int fid, EfxFilterf pname, out float value) { @@ -1092,20 +1092,20 @@ namespace OpenTK.Audio //[CLSCompliant(false)] private Delegate_alAuxiliaryEffectSlotf Imported_alAuxiliaryEffectSlotf; - /// This function is used to set floating point properties on Auxiliary Effect Slot objects. + /// This function is used to set floating-point properties on Auxiliary Effect Slot objects. /// Auxiliary Effect Slot object identifier. /// Auxiliary Effect Slot property to set. - /// Floating point value. + /// Floating-point value. [CLSCompliant(false)] public void AuxiliaryEffectSlot(uint asid, EfxAuxiliaryf param, float value) { Imported_alAuxiliaryEffectSlotf(asid, param, value); } - /// This function is used to set floating point properties on Auxiliary Effect Slot objects. + /// This function is used to set floating-point properties on Auxiliary Effect Slot objects. /// Auxiliary Effect Slot object identifier. /// Auxiliary Effect Slot property to set. - /// Floating point value. + /// Floating-point value. public void AuxiliaryEffectSlot(int asid, EfxAuxiliaryf param, float value) { @@ -1163,7 +1163,7 @@ namespace OpenTK.Audio /// This function is used to retrieve floating properties on Auxiliary Effect Slot objects. /// Auxiliary Effect Slot object identifier. /// Auxiliary Effect Slot property to retrieve. - /// Address where floating point value will be stored. + /// Address where floating-point value will be stored. [CLSCompliant(false)] public void GetAuxiliaryEffectSlot(uint asid, EfxAuxiliaryf pname, out float value) { @@ -1179,7 +1179,7 @@ namespace OpenTK.Audio /// This function is used to retrieve floating properties on Auxiliary Effect Slot objects. /// Auxiliary Effect Slot object identifier. /// Auxiliary Effect Slot property to retrieve. - /// Address where floating point value will be stored. + /// Address where floating-point value will be stored. public void GetAuxiliaryEffectSlot(int asid, EfxAuxiliaryf pname, out float value) { diff --git a/Source/Compatibility/Audio/OpenAL/AL/EffectsExtensionEnums.cs b/Source/Compatibility/Audio/OpenAL/AL/EffectsExtensionEnums.cs index 1e860d70..7078440c 100644 --- a/Source/Compatibility/Audio/OpenAL/AL/EffectsExtensionEnums.cs +++ b/Source/Compatibility/Audio/OpenAL/AL/EffectsExtensionEnums.cs @@ -13,7 +13,7 @@ namespace OpenTK.Audio { #region Effect - ///A list of valid 32-Bits Float Effect/GetEffect parameters + ///A list of valid 32-bit Float Effect/GetEffect parameters public enum EfxEffectf : int { ///Reverb Modal Density controls the coloration of the late reverb. Lowering the value adds more coloration to the late reverb. Range [0.0f .. 1.0f] Default: 1.0f @@ -305,7 +305,7 @@ namespace OpenTK.Audio EffectslotAuxiliarySendAuto = 0x0003, } - ///A list of valid 32-Bits Float AuxiliaryEffectSlot/GetAuxiliaryEffectSlot parameters + ///A list of valid 32-bits Float AuxiliaryEffectSlot/GetAuxiliaryEffectSlot parameters public enum EfxAuxiliaryf : int { /// This property is used to specify an output level for the Auxiliary Effect Slot. Setting the gain to 0.0f mutes the output. Range [0.0f .. 1.0f] Default: 1.0f @@ -316,7 +316,7 @@ namespace OpenTK.Audio #region Filter Object - ///A list of valid 32-Bits Float Filter/GetFilter parameters + ///A list of valid 32-bits Float Filter/GetFilter parameters public enum EfxFilterf : int { ///Range [0.0f .. 1.0f] Default: 1.0f diff --git a/Source/Compatibility/Audio/OpenAL/Alut/Alut.cs b/Source/Compatibility/Audio/OpenAL/Alut/Alut.cs index c37848d5..24fc82dc 100644 --- a/Source/Compatibility/Audio/OpenAL/Alut/Alut.cs +++ b/Source/Compatibility/Audio/OpenAL/Alut/Alut.cs @@ -111,9 +111,9 @@ namespace OpenTK.Audio public static extern uint CreateBufferHelloWorld(); //ALUT_API ALuint ALUT_APIENTRY alutCreateBufferHelloWorld (void); - /// Alut.CreateBufferWaveform returns a handle to an OpenAL buffer containing a snippet of audio with the specified waveshape at the specified frequency (in Hertz), phase (in degrees: -180 to +180) and duration (in seconds). + /// Alut.CreateBufferWaveform returns a handle to an OpenAL buffer containing a snippet of audio with the specified waveshape at the specified frequency (in hertz), phase (in degrees: -180 to +180) and duration (in seconds). /// - /// Frequency in Hertz [Hz]. + /// Frequency in hertz [Hz]. /// Phase (in degrees: -180 to +180) /// Duration (in seconds) /// OpenAL Buffer, 0 on failure. diff --git a/Source/Compatibility/Audio/WaveReader.cs b/Source/Compatibility/Audio/WaveReader.cs index ac4f828a..18942e55 100644 --- a/Source/Compatibility/Audio/WaveReader.cs +++ b/Source/Compatibility/Audio/WaveReader.cs @@ -69,14 +69,14 @@ namespace OpenTK.Audio { if (BitsPerSample == 16) { - Console.Write("Uploading 16 bit mono data to OpenAL..."); + Console.Write("Uploading 16-bit mono data to OpenAL..."); AL.BufferData(bid, ALFormat.Mono16, (IntPtr)p_Data, _Data.Length, SampleRate); } else { if (BitsPerSample == 8) { - Console.Write("Uploading 8 bit mono data to OpenAL..."); + Console.Write("Uploading 8-bit mono data to OpenAL..."); AL.BufferData(bid, ALFormat.Mono8, (IntPtr)p_Data, _Data.Length, SampleRate); } } @@ -88,14 +88,14 @@ namespace OpenTK.Audio { if (BitsPerSample == 16) { - Console.Write("Uploading 16 bit stereo data to OpenAL..."); + Console.Write("Uploading 16-bit stereo data to OpenAL..."); AL.BufferData(bid, ALFormat.Stereo16, (IntPtr)p_Data, _Data.Length, SampleRate); } else { if (BitsPerSample == 8) { - Console.Write("Uploading 8 bit stereo data to OpenAL..."); + Console.Write("Uploading 8-bit stereo data to OpenAL..."); AL.BufferData(bid, ALFormat.Stereo8, (IntPtr)p_Data, _Data.Length, SampleRate); } } diff --git a/Source/Compatibility/Math/Half.cs b/Source/Compatibility/Math/Half.cs index f55d4b4a..a04a4b17 100644 --- a/Source/Compatibility/Math/Half.cs +++ b/Source/Compatibility/Math/Half.cs @@ -66,7 +66,7 @@ namespace OpenTK.Math /// /// The name Half is derived from half-precision floating-point number. - /// It occupies only 16 Bits, which are split into 1 Sign bit, 5 Exponent bits and 10 Mantissa bits. + /// It occupies only 16 bits, which are split into 1 Sign bit, 5 Exponent bits and 10 Mantissa bits. /// /// /// Quote from ARB_half_float_pixel specification: @@ -104,9 +104,9 @@ namespace OpenTK.Math #region Constructors /// - /// The new Half instance will convert the parameter into 16-Bit Half precision floating point. + /// The new Half instance will convert the parameter into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. public Half(Single f) : this() { @@ -117,9 +117,9 @@ namespace OpenTK.Math } /// - /// The new Half instance will convert the parameter into 16-Bit Half precision floating point. + /// The new Half instance will convert the parameter into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. /// Enable checks that will throw if the conversion result is not meaningful. public Half(Single f, bool throwOnError) : this(f) @@ -131,22 +131,22 @@ namespace OpenTK.Math if (f < -Half.MaxValue) throw new ArithmeticException("Half: Negative minimum value exceeded."); // handle cases that make no sense - if (Single.IsNaN(f)) throw new ArithmeticException("Half: input is Not a Number (NaN)."); - if (Single.IsPositiveInfinity(f)) throw new ArithmeticException("Half: input is +infinity."); - if (Single.IsNegativeInfinity(f)) throw new ArithmeticException("Half: input is -infinity."); + if (Single.IsNaN(f)) throw new ArithmeticException("Half: Input is not a number (NaN)."); + if (Single.IsPositiveInfinity(f)) throw new ArithmeticException("Half: Input is positive infinity."); + if (Single.IsNegativeInfinity(f)) throw new ArithmeticException("Half: Input is negative infinity."); } } /// - /// The new Half instance will convert the parameter into 16-Bit Half precision floating point. + /// The new Half instance will convert the parameter into 16-bit half-precision floating-point. /// - /// 64-Bit Double precision floating point number. + /// 64-bit double-precision floating-point number. public Half(Double d) : this((Single)d) { } /// - /// The new Half instance will convert the parameter into 16-Bit Half precision floating point. + /// The new Half instance will convert the parameter into 16-bit half-precision floating-point. /// - /// 64-Bit Double precision floating point number. + /// 64-bit double-precision floating-point number. /// Enable checks that will throw if the conversion result is not meaningful. public Half(Double d, bool throwOnError) : this((Single)d, throwOnError) { } @@ -236,7 +236,7 @@ namespace OpenTK.Math } // exponent overflow - if (exponent > 30) throw new ArithmeticException("Half: hardware floating point overflow."); + if (exponent > 30) throw new ArithmeticException("Half: Hardware floating-point overflow."); // Assemble the half from S, E and M. @@ -248,8 +248,8 @@ namespace OpenTK.Math #region Half -> Single - /// Converts the 16-Bit half to 32-Bit floating point. - /// A Single precision floating point Number. + /// Converts the 16-bit half to 32-bit floating-point. + /// A single-precision floating-point number. public Single ToSingle() { int i = HalfToFloat(bits); @@ -505,7 +505,7 @@ namespace OpenTK.Math } /// Converts this Half into a human-legible string representation. - /// formatting for the output string. + /// Formatting for the output string. /// Culture-specific formatting information. /// The string representation of this instance. public string ToString(string format, IFormatProvider formatProvider) @@ -517,17 +517,17 @@ namespace OpenTK.Math #region String -> Half - /// Converts the string representation of a number to a Half precision floating point equivalent. - /// string representation of the number to convert. + /// Converts the string representation of a number to a half-precision floating-point equivalent. + /// String representation of the number to convert. /// A new Half instance. public static Half Parse(string s) { return (Half)Single.Parse(s); } - /// Converts the string representation of a number to a Half precision floating point equivalent. - /// string representation of the number to convert. - /// specifies the format of s. + /// Converts the string representation of a number to a half-precision floating-point equivalent. + /// String representation of the number to convert. + /// Specifies the format of s. /// Culture-specific formatting information. /// A new Half instance. public static Half Parse(string s, System.Globalization.NumberStyles style, IFormatProvider provider) @@ -535,8 +535,8 @@ namespace OpenTK.Math return (Half)Single.Parse(s, style, provider); } - /// Converts the string representation of a number to a Half precision floating point equivalent. Returns success. - /// string representation of the number to convert. + /// Converts the string representation of a number to a half-precision floating-point equivalent. Returns success. + /// String representation of the number to convert. /// The Half instance to write to. /// Success. public static bool TryParse(string s, out Half result) @@ -547,7 +547,7 @@ namespace OpenTK.Math return b; } - /// Converts the string representation of a number to a Half precision floating point equivalent. Returns success. + /// Converts the string representation of a number to a half-precision floating-point equivalent. Returns success. /// string representation of the number to convert. /// specifies the format of s. /// Culture-specific formatting information. diff --git a/Source/Compatibility/Math/Matrix3d.cs b/Source/Compatibility/Math/Matrix3d.cs index e3702446..e005a35b 100644 --- a/Source/Compatibility/Math/Matrix3d.cs +++ b/Source/Compatibility/Math/Matrix3d.cs @@ -271,7 +271,7 @@ namespace OpenTK.Math this.R2C2 = r2c2; } - /// Constructs left matrix from the given array of double-precision floating point numbers. + /// Constructs left matrix from the given array of double-precision floating-point numbers. /// The array of doubles for the components of the matrix. public Matrix3d(double[] doubleArray) { diff --git a/Source/Compatibility/Math/Quaterniond.cs b/Source/Compatibility/Math/Quaterniond.cs index fe7e5377..cbaab9c9 100644 --- a/Source/Compatibility/Math/Quaterniond.cs +++ b/Source/Compatibility/Math/Quaterniond.cs @@ -629,7 +629,7 @@ namespace OpenTK.Math this.Z = z; } - /// Constructs left Quaterniond from the given array of double-precision floating point numbers. + /// Constructs left Quaterniond from the given array of double-precision floating-point numbers. /// The array of doubles for the components of the Quaterniond. public Quaterniond(double[] doubleArray) { diff --git a/Source/Compatibility/Math/Vector2h.cs b/Source/Compatibility/Math/Vector2h.cs index 29b0b986..ff8f7a04 100644 --- a/Source/Compatibility/Math/Vector2h.cs +++ b/Source/Compatibility/Math/Vector2h.cs @@ -50,8 +50,8 @@ namespace OpenTK.Math /// /// The new Half2 instance will avoid conversion and copy directly from the Half parameters. /// - /// An Half instance of a 16-Bit half precision floating point number. - /// An Half instance of a 16-Bit half precision floating point number. + /// An Half instance of a 16-bit half-precision floating-point number. + /// An Half instance of a 16-bit half-precision floating-point number. public Vector2h(Half x, Half y) { X = x; @@ -59,10 +59,10 @@ namespace OpenTK.Math } /// - /// The new Half2 instance will convert the 2 parameters into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the 2 parameters into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. public Vector2h(Single x, Single y) { X = new Half(x); @@ -70,10 +70,10 @@ namespace OpenTK.Math } /// - /// The new Half2 instance will convert the 2 parameters into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the 2 parameters into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. /// Enable checks that will throw if the conversion result is not meaningful. public Vector2h(Single x, Single y, bool throwOnError) { @@ -82,7 +82,7 @@ namespace OpenTK.Math } /// - /// The new Half2 instance will convert the Vector2 into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2 into 16-bit half-precision floating-point. /// /// OpenTK.Vector2 [CLSCompliant(false)] @@ -93,7 +93,7 @@ namespace OpenTK.Math } /// - /// The new Half2 instance will convert the Vector2 into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2 into 16-bit half-precision floating-point. /// /// OpenTK.Vector2 /// Enable checks that will throw if the conversion result is not meaningful. @@ -105,7 +105,7 @@ namespace OpenTK.Math } /// - /// The new Half2 instance will convert the Vector2 into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2 into 16-bit half-precision floating-point. /// This is the fastest constructor. /// /// OpenTK.Vector2 @@ -116,7 +116,7 @@ namespace OpenTK.Math } /// - /// The new Half2 instance will convert the Vector2 into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2 into 16-bit half-precision floating-point. /// /// OpenTK.Vector2 /// Enable checks that will throw if the conversion result is not meaningful. @@ -127,7 +127,7 @@ namespace OpenTK.Math } /// - /// The new Half2 instance will convert the Vector2d into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2d into 16-bit half-precision floating-point. /// /// OpenTK.Vector2d public Vector2h(Vector2d v) @@ -137,7 +137,7 @@ namespace OpenTK.Math } /// - /// The new Half2 instance will convert the Vector2d into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2d into 16-bit half-precision floating-point. /// /// OpenTK.Vector2d /// Enable checks that will throw if the conversion result is not meaningful. @@ -148,7 +148,7 @@ namespace OpenTK.Math } /// - /// The new Half2 instance will convert the Vector2d into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2d into 16-bit half-precision floating-point. /// This is the faster constructor. /// /// OpenTK.Vector2d @@ -160,7 +160,7 @@ namespace OpenTK.Math } /// - /// The new Half2 instance will convert the Vector2d into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2d into 16-bit half-precision floating-point. /// /// OpenTK.Vector2d /// Enable checks that will throw if the conversion result is not meaningful. diff --git a/Source/Compatibility/Math/Vector3h.cs b/Source/Compatibility/Math/Vector3h.cs index f1616267..a9439e04 100644 --- a/Source/Compatibility/Math/Vector3h.cs +++ b/Source/Compatibility/Math/Vector3h.cs @@ -55,9 +55,9 @@ namespace OpenTK.Math /// /// The new Half3 instance will avoid conversion and copy directly from the Half parameters. /// - /// An Half instance of a 16-Bit half precision floating point number. - /// An Half instance of a 16-Bit half precision floating point number. - /// An Half instance of a 16-Bit half precision floating point number. + /// An Half instance of a 16-bit half-precision floating-point number. + /// An Half instance of a 16-bit half-precision floating-point number. + /// An Half instance of a 16-bit half-precision floating-point number. public Vector3h(Half x, Half y, Half z) { this.X = x; @@ -66,11 +66,11 @@ namespace OpenTK.Math } /// - /// The new Half3 instance will convert the 3 parameters into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the 3 parameters into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. public Vector3h(Single x, Single y, Single z) { X = new Half(x); @@ -79,11 +79,11 @@ namespace OpenTK.Math } /// - /// The new Half3 instance will convert the 3 parameters into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the 3 parameters into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. /// Enable checks that will throw if the conversion result is not meaningful. public Vector3h(Single x, Single y, Single z, bool throwOnError) { @@ -93,7 +93,7 @@ namespace OpenTK.Math } /// - /// The new Half3 instance will convert the Vector3 into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3 into 16-bit half-precision floating-point. /// /// OpenTK.Vector3 [CLSCompliant(false)] @@ -105,7 +105,7 @@ namespace OpenTK.Math } /// - /// The new Half3 instance will convert the Vector3 into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3 into 16-bit half-precision floating-point. /// /// OpenTK.Vector3 /// Enable checks that will throw if the conversion result is not meaningful. @@ -118,7 +118,7 @@ namespace OpenTK.Math } /// - /// The new Half3 instance will convert the Vector3 into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3 into 16-bit half-precision floating-point. /// This is the fastest constructor. /// /// OpenTK.Vector3 @@ -130,7 +130,7 @@ namespace OpenTK.Math } /// - /// The new Half3 instance will convert the Vector3 into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3 into 16-bit half-precision floating-point. /// /// OpenTK.Vector3 /// Enable checks that will throw if the conversion result is not meaningful. @@ -142,7 +142,7 @@ namespace OpenTK.Math } /// - /// The new Half3 instance will convert the Vector3d into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3d into 16-bit half-precision floating-point. /// /// OpenTK.Vector3d public Vector3h(Vector3d v) @@ -153,7 +153,7 @@ namespace OpenTK.Math } /// - /// The new Half3 instance will convert the Vector3d into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3d into 16-bit half-precision floating-point. /// /// OpenTK.Vector3d /// Enable checks that will throw if the conversion result is not meaningful. @@ -165,7 +165,7 @@ namespace OpenTK.Math } /// - /// The new Half3 instance will convert the Vector3d into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3d into 16-bit half-precision floating-point. /// This is the faster constructor. /// /// OpenTK.Vector3d @@ -178,7 +178,7 @@ namespace OpenTK.Math } /// - /// The new Half3 instance will convert the Vector3d into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3d into 16-bit half-precision floating-point. /// /// OpenTK.Vector3d /// Enable checks that will throw if the conversion result is not meaningful. diff --git a/Source/Compatibility/Math/Vector4h.cs b/Source/Compatibility/Math/Vector4h.cs index 0045e45f..397301d4 100644 --- a/Source/Compatibility/Math/Vector4h.cs +++ b/Source/Compatibility/Math/Vector4h.cs @@ -58,10 +58,10 @@ namespace OpenTK.Math /// /// The new Half4 instance will avoid conversion and copy directly from the Half parameters. /// - /// An Half instance of a 16-Bit half precision floating point number. - /// An Half instance of a 16-Bit half precision floating point number. - /// An Half instance of a 16-Bit half precision floating point number. - /// An Half instance of a 16-Bit half precision floating point number. + /// An Half instance of a 16-bit half-precision floating-point number. + /// An Half instance of a 16-bit half-precision floating-point number. + /// An Half instance of a 16-bit half-precision floating-point number. + /// An Half instance of a 16-bit half-precision floating-point number. public Vector4h(Half x, Half y, Half z, Half w) { this.X = x; @@ -71,12 +71,12 @@ namespace OpenTK.Math } /// - /// The new Half4 instance will convert the 4 parameters into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the 4 parameters into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. public Vector4h(Single x, Single y, Single z, Single w) { X = new Half(x); @@ -86,12 +86,12 @@ namespace OpenTK.Math } /// - /// The new Half4 instance will convert the 4 parameters into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the 4 parameters into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. /// Enable checks that will throw if the conversion result is not meaningful. public Vector4h(Single x, Single y, Single z, Single w, bool throwOnError) { @@ -102,7 +102,7 @@ namespace OpenTK.Math } /// - /// The new Half4 instance will convert the Vector4 into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4 into 16-bit half-precision floating-point. /// /// OpenTK.Vector4 [CLSCompliant(false)] @@ -115,7 +115,7 @@ namespace OpenTK.Math } /// - /// The new Half4 instance will convert the Vector4 into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4 into 16-bit half-precision floating-point. /// /// OpenTK.Vector4 /// Enable checks that will throw if the conversion result is not meaningful. @@ -129,7 +129,7 @@ namespace OpenTK.Math } /// - /// The new Half4 instance will convert the Vector4 into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4 into 16-bit half-precision floating-point. /// This is the fastest constructor. /// /// OpenTK.Vector4 @@ -142,7 +142,7 @@ namespace OpenTK.Math } /// - /// The new Half4 instance will convert the Vector4 into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4 into 16-bit half-precision floating-point. /// /// OpenTK.Vector4 /// Enable checks that will throw if the conversion result is not meaningful. @@ -155,7 +155,7 @@ namespace OpenTK.Math } /// - /// The new Half4 instance will convert the Vector4d into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4d into 16-bit half-precision floating-point. /// /// OpenTK.Vector4d public Vector4h(Vector4d v) @@ -167,7 +167,7 @@ namespace OpenTK.Math } /// - /// The new Half4 instance will convert the Vector4d into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4d into 16-bit half-precision floating-point. /// /// OpenTK.Vector4d /// Enable checks that will throw if the conversion result is not meaningful. @@ -180,7 +180,7 @@ namespace OpenTK.Math } /// - /// The new Half4 instance will convert the Vector4d into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4d into 16-bit half-precision floating-point. /// This is the faster constructor. /// /// OpenTK.Vector4d @@ -194,7 +194,7 @@ namespace OpenTK.Math } /// - /// The new Half4 instance will convert the Vector4d into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4d into 16-bit half-precision floating-point. /// /// OpenTK.Vector4d /// Enable checks that will throw if the conversion result is not meaningful. diff --git a/Source/Compatibility/Tao/OpenAl/Al.cs b/Source/Compatibility/Tao/OpenAl/Al.cs index 4ddf958b..daa825c8 100644 --- a/Source/Compatibility/Tao/OpenAl/Al.cs +++ b/Source/Compatibility/Tao/OpenAl/Al.cs @@ -1922,7 +1922,7 @@ namespace Tao.OpenAl #region alGetBufferf(int buffer, int attribute, out int val) /// - /// Retrieves a floating point property of a buffer. + /// Retrieves a floating-point property of a buffer. /// /// /// Buffer name whose attribute is being retrieved. @@ -1943,7 +1943,7 @@ namespace Tao.OpenAl #region alGetBufferf(int buffer, int attribute, [Out] int[] val) /// - /// Retrieves a floating point property of a buffer. + /// Retrieves a floating-point property of a buffer. /// /// /// Buffer name whose attribute is being retrieved. @@ -1964,7 +1964,7 @@ namespace Tao.OpenAl #region alGetBufferf(int buffer, int attribute, [Out] IntPtr val) /// - /// Retrieves a floating point property of a buffer. + /// Retrieves a floating-point property of a buffer. /// /// /// Buffer name whose attribute is being retrieved. @@ -1985,7 +1985,7 @@ namespace Tao.OpenAl #region alGetBufferf(int buffer, int attribute, [Out] float *val) /// - /// Retrieves a floating point property of a buffer. + /// Retrieves a floating-point property of a buffer. /// /// /// Buffer name whose attribute is being retrieved. @@ -2006,7 +2006,7 @@ namespace Tao.OpenAl #region void alGetBuffer3f(int buffer, int attribute, out float value1, out float value2, out float value3) /// - /// Retrieves a floating point property of a buffer. + /// Retrieves a floating-point property of a buffer. /// /// /// Buffer name whose attribute is being retrieved. @@ -2033,7 +2033,7 @@ namespace Tao.OpenAl #region alGetBufferfv(int buffer, int attribute, out float val) /// - /// Retrieves a floating point property of a buffer. + /// Retrieves a floating-point property of a buffer. /// /// /// Buffer name whose attribute is being retrieved. @@ -2054,7 +2054,7 @@ namespace Tao.OpenAl #region alGetBufferfv(int buffer, int attribute, [Out] float[] val) /// - /// Retrieves a floating point property of a buffer. + /// Retrieves a floating-point property of a buffer. /// /// /// Buffer name whose attribute is being retrieved. @@ -2075,7 +2075,7 @@ namespace Tao.OpenAl #region alGetBufferfv(int buffer, int attribute, [Out] IntPtr val) /// - /// Retrieves a floating point property of a buffer. + /// Retrieves a floating-point property of a buffer. /// /// /// Buffer name whose attribute is being retrieved. @@ -2096,7 +2096,7 @@ namespace Tao.OpenAl #region alGetBufferfv(int buffer, int attribute, [Out] float *val) /// - /// Retrieves a floating point property of a buffer. + /// Retrieves a floating-point property of a buffer. /// /// /// Buffer name whose attribute is being retrieved. @@ -2376,7 +2376,7 @@ namespace Tao.OpenAl #region double alGetDouble(int state) /// - /// Returns a double precision floating point OpenAL state. + /// Returns a double-precision floating-point OpenAL state. /// /// /// The state to be queried. @@ -2385,7 +2385,7 @@ namespace Tao.OpenAl /// The double value described by state will be returned. /// /// - /// There aren’t any double precision floating point states defined at the time of + /// There aren’t any double-precision floating-point states defined at the time of /// this writing, so this function will always generate the error /// . /// @@ -2396,7 +2396,7 @@ namespace Tao.OpenAl #region alGetDoublev(int state, out double output) /// - /// Retrieves a double precision floating point OpenAL state. + /// Retrieves a double-precision floating-point OpenAL state. /// /// /// The state to be queried. @@ -2405,7 +2405,7 @@ namespace Tao.OpenAl /// A pointer to the location where the state will be stored. /// /// - /// There aren’t any double precision floating point states defined at the time of + /// There aren’t any double-precision floating-point states defined at the time of /// this writing, so this function will always generate the error /// . /// @@ -2416,7 +2416,7 @@ namespace Tao.OpenAl #region alGetDoublev(int state, [Out] double[] output) /// - /// Retrieves a double precision floating point OpenAL state. + /// Retrieves a double-precision floating-point OpenAL state. /// /// /// The state to be queried. @@ -2425,7 +2425,7 @@ namespace Tao.OpenAl /// A pointer to the location where the state will be stored. /// /// - /// There aren’t any double precision floating point states defined at the time of + /// There aren’t any double-precision floating-point states defined at the time of /// this writing, so this function will always generate the error /// . /// @@ -2436,7 +2436,7 @@ namespace Tao.OpenAl #region alGetDoublev(int state, [Out] IntPtr output) /// - /// Retrieves a double precision floating point OpenAL state. + /// Retrieves a double-precision floating-point OpenAL state. /// /// /// The state to be queried. @@ -2445,7 +2445,7 @@ namespace Tao.OpenAl /// A pointer to the location where the state will be stored. /// /// - /// There aren’t any double precision floating point states defined at the time of + /// There aren’t any double-precision floating-point states defined at the time of /// this writing, so this function will always generate the error /// . /// @@ -2456,7 +2456,7 @@ namespace Tao.OpenAl #region alGetDoublev(int state, [Out] double *output) /// - /// Retrieves a double precision floating point OpenAL state. + /// Retrieves a double-precision floating-point OpenAL state. /// /// /// The state to be queried. @@ -2465,7 +2465,7 @@ namespace Tao.OpenAl /// A pointer to the location where the state will be stored. /// /// - /// There aren’t any double precision floating point states defined at the time of + /// There aren’t any double-precision floating-point states defined at the time of /// this writing, so this function will always generate the error /// . /// @@ -2511,7 +2511,7 @@ namespace Tao.OpenAl #region float alGetFloat(int state) /// - /// Returns a floating point OpenAL state. + /// Returns a floating-point OpenAL state. /// /// /// @@ -2525,7 +2525,7 @@ namespace Tao.OpenAl /// /// /// - /// The floating point value described by state will be returned. + /// The floating-point value described by state will be returned. /// // ALAPI ALfloat ALAPIENTRY alGetFloat(ALenum param); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -2534,7 +2534,7 @@ namespace Tao.OpenAl #region alGetFloatv(int state, out float output) /// - /// Retrieves a floating point OpenAL state. + /// Retrieves a floating-point OpenAL state. /// /// /// @@ -2557,7 +2557,7 @@ namespace Tao.OpenAl #region alGetFloatv(int state, [Out] float[] output) /// - /// Retrieves a floating point OpenAL state. + /// Retrieves a floating-point OpenAL state. /// /// /// @@ -2580,7 +2580,7 @@ namespace Tao.OpenAl #region alGetFloatv(int state, [Out] IntPtr output) /// - /// Retrieves a floating point OpenAL state. + /// Retrieves a floating-point OpenAL state. /// /// /// @@ -2603,7 +2603,7 @@ namespace Tao.OpenAl #region alGetFloatv(int state, [Out] float *output) /// - /// Retrieves a floating point OpenAL state. + /// Retrieves a floating-point OpenAL state. /// /// /// @@ -2736,7 +2736,7 @@ namespace Tao.OpenAl #region alGetListener3f(int attribute, out float output1, out float output2, out float output3) /// - /// Retrieves a set of three floating point values from a property of the listener. + /// Retrieves a set of three floating-point values from a property of the listener. /// /// /// @@ -2750,13 +2750,13 @@ namespace Tao.OpenAl /// /// /// - /// Pointer to the the floating point being retrieved. + /// Pointer to the the floating-point being retrieved. /// /// - /// Pointer to the the floating point being retrieved. + /// Pointer to the the floating-point being retrieved. /// /// - /// Pointer to the the floating point being retrieved. + /// Pointer to the the floating-point being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetListener3f(ALenum param, ALfloat* v1, ALfloat* v2, ALfloat* v3); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -2765,7 +2765,7 @@ namespace Tao.OpenAl #region alGetListener3f(int attribute, [Out] float[] output1, [Out] float[] output2, [Out] float[] output3) /// - /// Retrieves a set of three floating point values from a property of the listener. + /// Retrieves a set of three floating-point values from a property of the listener. /// /// /// @@ -2779,13 +2779,13 @@ namespace Tao.OpenAl /// /// /// - /// Pointer to the the floating point being retrieved. + /// Pointer to the the floating-point being retrieved. /// /// - /// Pointer to the the floating point being retrieved. + /// Pointer to the the floating-point being retrieved. /// /// - /// Pointer to the the floating point being retrieved. + /// Pointer to the the floating-point being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetListener3f(ALenum param, ALfloat* v1, ALfloat* v2, ALfloat* v3); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -2794,7 +2794,7 @@ namespace Tao.OpenAl #region alGetListener3f(int attribute, [Out] IntPtr output1, [Out] IntPtr output2, [Out] IntPtr output3) /// - /// Retrieves a set of three floating point values from a property of the listener. + /// Retrieves a set of three floating-point values from a property of the listener. /// /// /// @@ -2808,13 +2808,13 @@ namespace Tao.OpenAl /// /// /// - /// Pointer to the the floating point being retrieved. + /// Pointer to the the floating-point being retrieved. /// /// - /// Pointer to the the floating point being retrieved. + /// Pointer to the the floating-point being retrieved. /// /// - /// Pointer to the the floating point being retrieved. + /// Pointer to the the floating-point being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetListener3f(ALenum param, ALfloat* v1, ALfloat* v2, ALfloat* v3); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -2823,7 +2823,7 @@ namespace Tao.OpenAl #region alGetListener3f(int attribute, [Out] float *output1, [Out] float *output2, [Out] float *output3) /// - /// Retrieves a set of three floating point values from a property of the listener. + /// Retrieves a set of three floating-point values from a property of the listener. /// /// /// @@ -2837,13 +2837,13 @@ namespace Tao.OpenAl /// /// /// - /// Pointer to the the floating point being retrieved. + /// Pointer to the the floating-point being retrieved. /// /// - /// Pointer to the the floating point being retrieved. + /// Pointer to the the floating-point being retrieved. /// /// - /// Pointer to the the floating point being retrieved. + /// Pointer to the the floating-point being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetListener3f(ALenum param, ALfloat* v1, ALfloat* v2, ALfloat* v3); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), CLSCompliant(false), SuppressUnmanagedCodeSecurity] @@ -2852,7 +2852,7 @@ namespace Tao.OpenAl #region alGetListenerf(int attribute, out float output) /// - /// Retrieves a floating point property of the listener. + /// Retrieves a floating-point property of the listener. /// /// /// @@ -2865,7 +2865,7 @@ namespace Tao.OpenAl /// /// /// - /// A pointer to the floating point value being retrieved. + /// A pointer to the floating-point value being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetListenerf(ALenum param, ALfloat* value); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -2874,7 +2874,7 @@ namespace Tao.OpenAl #region alGetListenerf(int attribute, [Out] float[] output) /// - /// Retrieves a floating point property of the listener. + /// Retrieves a floating-point property of the listener. /// /// /// @@ -2887,7 +2887,7 @@ namespace Tao.OpenAl /// /// /// - /// A pointer to the floating point value being retrieved. + /// A pointer to the floating-point value being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetListenerf(ALenum param, ALfloat* value); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -2896,7 +2896,7 @@ namespace Tao.OpenAl #region alGetListenerf(int attribute, [Out] IntPtr output) /// - /// Retrieves a floating point property of the listener. + /// Retrieves a floating-point property of the listener. /// /// /// @@ -2909,7 +2909,7 @@ namespace Tao.OpenAl /// /// /// - /// A pointer to the floating point value being retrieved. + /// A pointer to the floating-point value being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetListenerf(ALenum param, ALfloat* value); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -2918,7 +2918,7 @@ namespace Tao.OpenAl #region alGetListenerf(int attribute, [Out] float *output) /// - /// Retrieves a floating point property of the listener. + /// Retrieves a floating-point property of the listener. /// /// /// @@ -2931,7 +2931,7 @@ namespace Tao.OpenAl /// /// /// - /// A pointer to the floating point value being retrieved. + /// A pointer to the floating-point value being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetListenerf(ALenum param, ALfloat* value); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), CLSCompliant(false), SuppressUnmanagedCodeSecurity] @@ -2940,7 +2940,7 @@ namespace Tao.OpenAl #region alGetListenerfv(int attribute, out float output) /// - /// Retrieves a floating point-vector property of the listener. + /// Retrieves a floating-point vector property of the listener. /// /// /// @@ -2955,7 +2955,7 @@ namespace Tao.OpenAl /// /// /// - /// A pointer to the floating point-vector value being retrieved. + /// A pointer to the floating-point vector value being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetListenerfv(ALenum param, ALfloat* values); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -2964,7 +2964,7 @@ namespace Tao.OpenAl #region alGetListenerfv(int attribute, [Out] float[] output) /// - /// Retrieves a floating point-vector property of the listener. + /// Retrieves a floating-point vector property of the listener. /// /// /// @@ -2979,7 +2979,7 @@ namespace Tao.OpenAl /// /// /// - /// A pointer to the floating point-vector value being retrieved. + /// A pointer to the floating-point vector value being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetListenerfv(ALenum param, ALfloat* values); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -2988,7 +2988,7 @@ namespace Tao.OpenAl #region alGetListenerfv(int attribute, [Out] IntPtr output) /// - /// Retrieves a floating point-vector property of the listener. + /// Retrieves a floating-point vector property of the listener. /// /// /// @@ -3003,7 +3003,7 @@ namespace Tao.OpenAl /// /// /// - /// A pointer to the floating point-vector value being retrieved. + /// A pointer to the floating-point vector value being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetListenerfv(ALenum param, ALfloat* values); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -3012,7 +3012,7 @@ namespace Tao.OpenAl #region alGetListenerfv(int attribute, [Out] float *output) /// - /// Retrieves a floating point-vector property of the listener. + /// Retrieves a floating-point vector property of the listener. /// /// /// @@ -3027,7 +3027,7 @@ namespace Tao.OpenAl /// /// /// - /// A pointer to the floating point-vector value being retrieved. + /// A pointer to the floating-point vector value being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetListenerfv(ALenum param, ALfloat* values); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), CLSCompliant(false), SuppressUnmanagedCodeSecurity] @@ -3359,7 +3359,7 @@ namespace Tao.OpenAl #region alGetSourcef(int source, int attribute, out float val) /// - /// Retrieves a floating point property of a source. + /// Retrieves a floating-point property of a source. /// /// /// Source name whose attribute is being retrieved. @@ -3384,7 +3384,7 @@ namespace Tao.OpenAl /// /// /// - /// A pointer to the floating point value being retrieved. + /// A pointer to the floating-point value being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetSourcef(ALuint source, ALenum param, ALfloat* value); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -3393,7 +3393,7 @@ namespace Tao.OpenAl #region alGetSourcef(int source, int attribute, [Out] float[] val) /// - /// Retrieves a floating point property of a source. + /// Retrieves a floating-point property of a source. /// /// /// Source name whose attribute is being retrieved. @@ -3418,7 +3418,7 @@ namespace Tao.OpenAl /// /// /// - /// A pointer to the floating point value being retrieved. + /// A pointer to the floating-point value being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetSourcef(ALuint source, ALenum param, ALfloat* value); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -3427,7 +3427,7 @@ namespace Tao.OpenAl #region alGetSourcef(int source, int attribute, [Out] IntPtr val) /// - /// Retrieves a floating point property of a source. + /// Retrieves a floating-point property of a source. /// /// /// Source name whose attribute is being retrieved. @@ -3452,7 +3452,7 @@ namespace Tao.OpenAl /// /// /// - /// A pointer to the floating point value being retrieved. + /// A pointer to the floating-point value being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetSourcef(ALuint source, ALenum param, ALfloat* value); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -3461,7 +3461,7 @@ namespace Tao.OpenAl #region alGetSourcef(int source, int attribute, [Out] float *val) /// - /// Retrieves a floating point property of a source. + /// Retrieves a floating-point property of a source. /// /// /// Source name whose attribute is being retrieved. @@ -3486,7 +3486,7 @@ namespace Tao.OpenAl /// /// /// - /// A pointer to the floating point value being retrieved. + /// A pointer to the floating-point value being retrieved. /// // ALAPI ALvoid ALAPIENTRY alGetSourcef(ALuint source, ALenum param, ALfloat* value); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), CLSCompliant(false), SuppressUnmanagedCodeSecurity] @@ -3495,7 +3495,7 @@ namespace Tao.OpenAl #region alGetSourcefv(int source, int attribute, out float val) /// - /// Retrieves a floating point-vector property of a source. + /// Retrieves a floating-point vector property of a source. /// /// /// Source name whose attribute is being retrieved. @@ -3522,7 +3522,7 @@ namespace Tao.OpenAl #region alGetSourcefv(int source, int attribute, [Out] float[] values) /// - /// Retrieves a floating point-vector property of a source. + /// Retrieves a floating-point vector property of a source. /// /// /// Source name whose attribute is being retrieved. @@ -3549,7 +3549,7 @@ namespace Tao.OpenAl #region alGetSourcefv(int source, int attribute, [Out] IntPtr values) /// - /// Retrieves a floating point-vector property of a source. + /// Retrieves a floating-point vector property of a source. /// /// /// Source name whose attribute is being retrieved. @@ -3576,7 +3576,7 @@ namespace Tao.OpenAl #region alGetSourcefv(int source, int attribute, [Out] float *values) /// - /// Retrieves a floating point-vector property of a source. + /// Retrieves a floating-point vector property of a source. /// /// /// Source name whose attribute is being retrieved. @@ -3988,7 +3988,7 @@ namespace Tao.OpenAl #region alListener3f(int attribute, float value1, float value2, float value3) /// - /// Sets a floating point property for the listener. + /// Sets a floating-point property for the listener. /// /// /// @@ -4017,7 +4017,7 @@ namespace Tao.OpenAl #region alListenerf(int attribute, float val) /// - /// Sets a floating point property for the listener. + /// Sets a floating-point property for the listener. /// /// /// The name of the attribute to be set. @@ -4032,7 +4032,7 @@ namespace Tao.OpenAl #region alListenerfv(int attribute, [In] ref float values) /// - /// Sets a floating point-vector property of the listener. + /// Sets a floating-point vector property of the listener. /// /// /// @@ -4047,7 +4047,7 @@ namespace Tao.OpenAl /// /// /// - /// Pointer to floating point-vector values. + /// Pointer to floating-point vector values. /// // ALAPI ALvoid ALAPIENTRY alListenerfv(ALenum param, ALfloat* values); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -4056,7 +4056,7 @@ namespace Tao.OpenAl #region alListenerfv(int attribute, [In] float[] values) /// - /// Sets a floating point-vector property of the listener. + /// Sets a floating-point vector property of the listener. /// /// /// @@ -4071,7 +4071,7 @@ namespace Tao.OpenAl /// /// /// - /// Pointer to floating point-vector values. + /// Pointer to floating-point vector values. /// // ALAPI ALvoid ALAPIENTRY alListenerfv(ALenum param, ALfloat* values); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -4080,7 +4080,7 @@ namespace Tao.OpenAl #region alListenerfv(int attribute, [In] IntPtr values) /// - /// Sets a floating point-vector property of the listener. + /// Sets a floating-point vector property of the listener. /// /// /// @@ -4095,7 +4095,7 @@ namespace Tao.OpenAl /// /// /// - /// Pointer to floating point-vector values. + /// Pointer to floating-point vector values. /// // ALAPI ALvoid ALAPIENTRY alListenerfv(ALenum param, ALfloat* values); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), SuppressUnmanagedCodeSecurity] @@ -4104,7 +4104,7 @@ namespace Tao.OpenAl #region alListenerfv(int attribute, [In] float *values) /// - /// Sets a floating point-vector property of the listener. + /// Sets a floating-point vector property of the listener. /// /// /// @@ -4119,7 +4119,7 @@ namespace Tao.OpenAl /// /// /// - /// Pointer to floating point-vector values. + /// Pointer to floating-point vector values. /// // ALAPI ALvoid ALAPIENTRY alListenerfv(ALenum param, ALfloat* values); [DllImport(AL_NATIVE_LIBRARY, CallingConvention = CALLING_CONVENTION), CLSCompliant(false), SuppressUnmanagedCodeSecurity] @@ -4217,7 +4217,7 @@ namespace Tao.OpenAl #region alSource3f(int source, int attribute, float value1, float value2, float value3) /// - /// Sets a source property requiring three floating point values. + /// Sets a source property requiring three floating-point values. /// /// /// Source name whose attribute is being set. @@ -4253,7 +4253,7 @@ namespace Tao.OpenAl #region alSourcef(int source, int attribute, float val) /// - /// Sets a floating point property of a source. + /// Sets a floating-point property of a source. /// /// /// Source name whose attribute is being set. @@ -4285,7 +4285,7 @@ namespace Tao.OpenAl #region alSourcefv(int source, int attribute, [In] ref float values) /// - /// Sets a floating point-vector property of a source. + /// Sets a floating-point vector property of a source. /// /// /// Source name whose attribute is being set. @@ -4312,7 +4312,7 @@ namespace Tao.OpenAl #region alSourcefv(int source, int attribute, [In] float[] values) /// - /// Sets a floating point-vector property of a source. + /// Sets a floating-point vector property of a source. /// /// /// Source name whose attribute is being set. @@ -4339,7 +4339,7 @@ namespace Tao.OpenAl #region alSourcefv(int source, int attribute, [In] IntPtr values) /// - /// Sets a floating point-vector property of a source. + /// Sets a floating-point vector property of a source. /// /// /// Source name whose attribute is being set. @@ -4366,7 +4366,7 @@ namespace Tao.OpenAl #region alSourcefv(int source, int attribute, [In] float *values) /// - /// Sets a floating point-vector property of a source. + /// Sets a floating-point vector property of a source. /// /// /// Source name whose attribute is being set. diff --git a/Source/Compatibility/Tao/OpenGl/Glu.cs b/Source/Compatibility/Tao/OpenGl/Glu.cs index a6ca3256..5ea08291 100644 --- a/Source/Compatibility/Tao/OpenGl/Glu.cs +++ b/Source/Compatibility/Tao/OpenGl/Glu.cs @@ -37713,7 +37713,7 @@ namespace Tao.OpenGl /// An array of knotCount nondecreasing knot values. /// /// - /// The offset (as a number of single precision–floating-point values) between + /// The offset (as a number of single-precision floating-point values) between /// successive curve control points. /// /// @@ -37807,7 +37807,7 @@ namespace Tao.OpenGl /// An array of knotCount nondecreasing knot values. /// /// - /// The offset (as a number of single precision–floating-point values) between + /// The offset (as a number of single-precision floating-point values) between /// successive curve control points. /// /// @@ -38164,11 +38164,11 @@ namespace Tao.OpenGl /// v direction. /// /// - /// The offset (as a number of single precision–floating-point values) between + /// The offset (as a number of single-precision floating-point values) between /// successive control points in the parametric u direction in control. /// /// - /// The offset (in single precision–floating-point values) between successive + /// The offset (in single-precision floating-point values) between successive /// control points in the parametric v direction in control. /// /// @@ -38268,11 +38268,11 @@ namespace Tao.OpenGl /// v direction. /// /// - /// The offset (as a number of single precision–floating-point values) between + /// The offset (as a number of single-precision floating-point values) between /// successive control points in the parametric u direction in control. /// /// - /// The offset (in single precision–floating-point values) between successive + /// The offset (in single-precision floating-point values) between successive /// control points in the parametric v direction in control. /// /// @@ -38372,11 +38372,11 @@ namespace Tao.OpenGl /// v direction. /// /// - /// The offset (as a number of single precision–floating-point values) between + /// The offset (as a number of single-precision floating-point values) between /// successive control points in the parametric u direction in control. /// /// - /// The offset (in single precision–floating-point values) between successive + /// The offset (in single-precision floating-point values) between successive /// control points in the parametric v direction in control. /// /// @@ -38801,7 +38801,7 @@ namespace Tao.OpenGl /// An array containing the curve points. /// /// - /// The offset (a number of single precision–floating-point values) between + /// The offset (a number of single-precision floating-point values) between /// points on the curve. /// /// @@ -38857,7 +38857,7 @@ namespace Tao.OpenGl /// An array containing the curve points. /// /// - /// The offset (a number of single precision–floating-point values) between + /// The offset (a number of single-precision floating-point values) between /// points on the curve. /// /// diff --git a/Source/Examples/OpenAL/1.1/Parrot.Designer.cs b/Source/Examples/OpenAL/1.1/Parrot.Designer.cs index d1f364b9..b50fdab4 100644 --- a/Source/Examples/OpenAL/1.1/Parrot.Designer.cs +++ b/Source/Examples/OpenAL/1.1/Parrot.Designer.cs @@ -131,7 +131,7 @@ this.label_MONO16BIT.Name = "label_MONO16BIT"; this.label_MONO16BIT.Size = new System.Drawing.Size(64, 13); this.label_MONO16BIT.TabIndex = 102; - this.label_MONO16BIT.Text = "Mono 16 Bit"; + this.label_MONO16BIT.Text = "Mono 16-bit"; // // label_RINGBUFFER // diff --git a/Source/Examples/Utilities/LoaderGDI.cs b/Source/Examples/Utilities/LoaderGDI.cs index 24e190ba..a470b3ac 100644 --- a/Source/Examples/Utilities/LoaderGDI.cs +++ b/Source/Examples/Utilities/LoaderGDI.cs @@ -6,7 +6,7 @@ */ #endregion -// TODO: Find paint program that can properly export 8/16 Bit Textures and make sure they are loaded correctly. +// TODO: Find paint program that can properly export 8/16-bit Textures and make sure they are loaded correctly. using System; using System.Diagnostics; diff --git a/Source/OpenTK/Audio/OpenAL/AL/AL.cs b/Source/OpenTK/Audio/OpenAL/AL/AL.cs index 95f6cb32..5191eb57 100644 --- a/Source/OpenTK/Audio/OpenAL/AL/AL.cs +++ b/Source/OpenTK/Audio/OpenAL/AL/AL.cs @@ -146,15 +146,15 @@ namespace OpenTK.Audio.OpenAL public static extern int Get(ALGetInteger param); // AL_API ALint AL_APIENTRY alGetInteger( ALenum param ); - /// This function returns a floating point OpenAL state. + /// This function returns a floating-point OpenAL state. /// the state to be queried: DopplerFactor, SpeedOfSound. - /// The floating point state described by param will be returned. + /// The floating-point state described by param will be returned. [DllImport(AL.Lib, EntryPoint = "alGetFloat", ExactSpelling = true, CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity()] public static extern float Get(ALGetFloat param); // AL_API ALfloat AL_APIENTRY alGetFloat( ALenum param ); /* disabled due to no token using it - /// This function returns a double precision floating point OpenAL state. + /// This function returns a double-precision floating-point OpenAL state. /// the state to be queried: AL_DOPPLER_FACTOR, AL_SPEED_OF_SOUND, AL_DISTANCE_MODEL /// The double value described by param will be returned. [DllImport( AL.Lib, EntryPoint = "alGetDouble", ExactSpelling = true, CallingConvention = AL.Style ), SuppressUnmanagedCodeSecurity( )] @@ -209,14 +209,14 @@ namespace OpenTK.Audio.OpenAL #region Set Listener parameters - /// This function sets a floating point property for the listener. + /// This function sets a floating-point property for the listener. /// The name of the attribute to be set: ALListenerf.Gain /// The float value to set the attribute to. [DllImport(AL.Lib, EntryPoint = "alListenerf", ExactSpelling = true, CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity()] public static extern void Listener(ALListenerf param, float value); // AL_API void AL_APIENTRY alListenerf( ALenum param, ALfloat value ); - /// This function sets a floating point property for the listener. + /// This function sets a floating-point property for the listener. /// The name of the attribute to set: ALListener3f.Position, ALListener3f.Velocity /// The value to set the attribute to. /// The value to set the attribute to. @@ -237,9 +237,9 @@ namespace OpenTK.Audio.OpenAL unsafe private static extern void ListenerPrivate(ALListenerfv param, float* values); // AL_API void AL_APIENTRY alListenerfv( ALenum param, const ALfloat* values ); - /// This function sets a floating point-vector property of the listener. + /// This function sets a floating-point vector property of the listener. /// The name of the attribute to be set: ALListener3f.Position, ALListener3f.Velocity, ALListenerfv.Orientation - /// Pointer to floating point-vector values. + /// Pointer to floating-point vector values. public static void Listener(ALListenerfv param, ref float[] values) { unsafe @@ -285,18 +285,18 @@ namespace OpenTK.Audio.OpenAL #region Get Listener parameters - /// This function retrieves a floating point property of the listener. + /// This function retrieves a floating-point property of the listener. /// the name of the attribute to be retrieved: ALListenerf.Gain - /// a pointer to the floating point value being retrieved. + /// a pointer to the floating-point value being retrieved. [DllImport(AL.Lib, EntryPoint = "alGetListenerf", ExactSpelling = true, CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity()] public static extern void GetListener(ALListenerf param, [Out] out float value); // AL_API void AL_APIENTRY alGetListenerf( ALenum param, ALfloat* value ); - /// This function retrieves a set of three floating point values from a property of the listener. + /// This function retrieves a set of three floating-point values from a property of the listener. /// The name of the attribute to be retrieved: ALListener3f.Position, ALListener3f.Velocity - /// Pointers to the three floating point being retrieved. - /// Pointers to the three floating point being retrieved. - /// Pointers to the three floating point being retrieved. + /// Pointers to the three floating-point being retrieved. + /// Pointers to the three floating-point being retrieved. + /// Pointers to the three floating-point being retrieved. [DllImport(AL.Lib, EntryPoint = "alGetListener3f", ExactSpelling = true, CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity()] public static extern void GetListener(ALListener3f param, [Out] out float value1, [Out] out float value2, [Out] out float value3); // AL_API void AL_APIENTRY alGetListener3f( ALenum param, ALfloat *value1, ALfloat *value2, ALfloat *value3 ); @@ -309,9 +309,9 @@ namespace OpenTK.Audio.OpenAL GetListener(param, out values.X, out values.Y, out values.Z); } - /// This function retrieves a floating point-vector property of the listener. You must pin it manually. + /// This function retrieves a floating-point vector property of the listener. You must pin it manually. /// the name of the attribute to be retrieved: ALListener3f.Position, ALListener3f.Velocity, ALListenerfv.Orientation - /// A pointer to the floating point-vector value being retrieved. + /// A pointer to the floating-point vector value being retrieved. [CLSCompliant(false), DllImport(AL.Lib, EntryPoint = "alGetListenerfv", ExactSpelling = true, CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity()] unsafe public static extern void GetListener(ALListenerfv param, float* values); // AL_API void AL_APIENTRY alGetListenerfv( ALenum param, ALfloat* values ); @@ -551,7 +551,7 @@ namespace OpenTK.Audio.OpenAL #region Sourcef - /// This function sets a floating point property of a source. + /// This function sets a floating-point property of a source. /// Source name whose attribute is being set /// The name of the attribute to set: ALSourcef.Pitch, Gain, MinGain, MaxGain, MaxDistance, RolloffFactor, ConeOuterGain, ConeInnerAngle, ConeOuterAngle, ReferenceDistance, EfxAirAbsorptionFactor, EfxRoomRolloffFactor, EfxConeOuterGainHighFrequency. /// The value to set the attribute to. @@ -559,7 +559,7 @@ namespace OpenTK.Audio.OpenAL public static extern void Source(uint sid, ALSourcef param, float value); // AL_API void AL_APIENTRY alSourcef( ALuint sid, ALenum param, ALfloat value ); - /// This function sets a floating point property of a source. + /// This function sets a floating-point property of a source. /// Source name whose attribute is being set /// The name of the attribute to set: ALSourcef.Pitch, Gain, MinGain, MaxGain, MaxDistance, RolloffFactor, ConeOuterGain, ConeInnerAngle, ConeOuterAngle, ReferenceDistance, EfxAirAbsorptionFactor, EfxRoomRolloffFactor, EfxConeOuterGainHighFrequency. /// The value to set the attribute to. @@ -572,7 +572,7 @@ namespace OpenTK.Audio.OpenAL #region Source3f - /// This function sets a source property requiring three floating point values. + /// This function sets a source property requiring three floating-point values. /// Source name whose attribute is being set. /// The name of the attribute to set: ALSource3f.Position, Velocity, Direction. /// The three ALfloat values which the attribute will be set to. @@ -582,7 +582,7 @@ namespace OpenTK.Audio.OpenAL public static extern void Source(uint sid, ALSource3f param, float value1, float value2, float value3); // AL_API void AL_APIENTRY alSource3f( ALuint sid, ALenum param, ALfloat value1, ALfloat value2, ALfloat value3 ); - /// This function sets a source property requiring three floating point values. + /// This function sets a source property requiring three floating-point values. /// Source name whose attribute is being set. /// The name of the attribute to set: ALSource3f.Position, Velocity, Direction. /// The three ALfloat values which the attribute will be set to. @@ -593,7 +593,7 @@ namespace OpenTK.Audio.OpenAL Source((uint)sid, param, value1, value2, value3); } - /// This function sets a source property requiring three floating point values. + /// This function sets a source property requiring three floating-point values. /// Source name whose attribute is being set. /// The name of the attribute to set: ALSource3f.Position, Velocity, Direction. /// A Math.Vector3 which the attribute will be set to. @@ -603,7 +603,7 @@ namespace OpenTK.Audio.OpenAL Source(sid, param, values.X, values.Y, values.Z); } - /// This function sets a source property requiring three floating point values. + /// This function sets a source property requiring three floating-point values. /// Source name whose attribute is being set. /// The name of the attribute to set: ALSource3f.Position, Velocity, Direction. /// A Math.Vector3 which the attribute will be set to. @@ -706,18 +706,18 @@ namespace OpenTK.Audio.OpenAL #region GetSourcef - /// This function retrieves a floating point property of a source. + /// This function retrieves a floating-point property of a source. /// Source name whose attribute is being retrieved. /// The name of the attribute to set: ALSourcef.Pitch, Gain, MinGain, MaxGain, MaxDistance, RolloffFactor, ConeOuterGain, ConeInnerAngle, ConeOuterAngle, ReferenceDistance, EfxAirAbsorptionFactor, EfxRoomRolloffFactor, EfxConeOuterGainHighFrequency. - /// A pointer to the floating point value being retrieved + /// A pointer to the floating-point value being retrieved [CLSCompliant(false), DllImport(AL.Lib, EntryPoint = "alGetSourcef", ExactSpelling = true, CallingConvention = AL.Style), SuppressUnmanagedCodeSecurity()] public static extern void GetSource(uint sid, ALSourcef param, [Out] out float value); // AL_API void AL_APIENTRY alGetSourcef( ALuint sid, ALenum param, ALfloat* value ); - /// This function retrieves a floating point property of a source. + /// This function retrieves a floating-point property of a source. /// Source name whose attribute is being retrieved. /// The name of the attribute to set: ALSourcef.Pitch, Gain, MinGain, MaxGain, MaxDistance, RolloffFactor, ConeOuterGain, ConeInnerAngle, ConeOuterAngle, ReferenceDistance, EfxAirAbsorptionFactor, EfxRoomRolloffFactor, EfxConeOuterGainHighFrequency. - /// A pointer to the floating point value being retrieved + /// A pointer to the floating-point value being retrieved public static void GetSource(int sid, ALSourcef param, out float value) { GetSource((uint)sid, param, out value); @@ -727,7 +727,7 @@ namespace OpenTK.Audio.OpenAL #region GetSource3f - /// This function retrieves three floating point values representing a property of a source. + /// This function retrieves three floating-point values representing a property of a source. /// Source name whose attribute is being retrieved. /// the name of the attribute being retrieved: ALSource3f.Position, Velocity, Direction. /// Pointer to the value to retrieve. @@ -737,7 +737,7 @@ namespace OpenTK.Audio.OpenAL public static extern void GetSource(uint sid, ALSource3f param, [Out] out float value1, [Out] out float value2, [Out] out float value3); // AL_API void AL_APIENTRY alGetSource3f( ALuint sid, ALenum param, ALfloat* value1, ALfloat* value2, ALfloat* value3); - /// This function retrieves three floating point values representing a property of a source. + /// This function retrieves three floating-point values representing a property of a source. /// Source name whose attribute is being retrieved. /// the name of the attribute being retrieved: ALSource3f.Position, Velocity, Direction. /// Pointer to the value to retrieve. @@ -748,7 +748,7 @@ namespace OpenTK.Audio.OpenAL GetSource((uint)sid, param, out value1, out value2, out value3); } - /// This function retrieves three floating point values representing a property of a source. + /// This function retrieves three floating-point values representing a property of a source. /// Source name whose attribute is being retrieved. /// the name of the attribute being retrieved: ALSource3f.Position, Velocity, Direction. /// A Math.Vector3 to retrieve the values to. @@ -758,7 +758,7 @@ namespace OpenTK.Audio.OpenAL GetSource(sid, param, out values.X, out values.Y, out values.Z); } - /// This function retrieves three floating point values representing a property of a source. + /// This function retrieves three floating-point values representing a property of a source. /// Source name whose attribute is being retrieved. /// the name of the attribute being retrieved: ALSource3f.Position, Velocity, Direction. /// A Math.Vector3 to retrieve the values to. diff --git a/Source/OpenTK/Audio/OpenAL/AL/ALEnums.cs b/Source/OpenTK/Audio/OpenAL/AL/ALEnums.cs index 6a07b6a4..e6c90be6 100644 --- a/Source/OpenTK/Audio/OpenAL/AL/ALEnums.cs +++ b/Source/OpenTK/Audio/OpenAL/AL/ALEnums.cs @@ -19,7 +19,7 @@ namespace OpenTK.Audio.OpenAL Invalid = -1, } - ///A list of valid 32-Bits Float Listener/GetListener parameters + ///A list of valid 32-bit Float Listener/GetListener parameters public enum ALListenerf : int { ///Indicate the gain (Volume amplification) applied. Type: float Range: [0.0f - ? ] A value of 1.0 means un-attenuated/unchanged. Each division by 2 equals an attenuation of -6dB. Each multiplicaton with 2 equals an amplification of +6dB. A value of 0.0f is interpreted as zero volume and the channel is effectively disabled. @@ -46,7 +46,7 @@ namespace OpenTK.Audio.OpenAL Orientation = 0x100F, } - ///A list of valid 32-Bits Float Source/GetSource parameters + ///A list of valid 32-bit Float Source/GetSource parameters public enum ALSourcef : int { ///Source specific reference distance. Type: float Range: [0.0f - float.PositiveInfinity] At 0.0f, no distance attenuation occurs. Type: float Default: 1.0f. @@ -106,7 +106,7 @@ namespace OpenTK.Audio.OpenAL Direction = 0x1005, } - ///A list of valid 8-Bits boolean Source/GetSource parameters + ///A list of valid 8-bit boolean Source/GetSource parameters public enum ALSourceb : int { ///Indicate that the Source has relative coordinates. Type: bool Range: [True, False] @@ -216,16 +216,16 @@ namespace OpenTK.Audio.OpenAL ///Sound samples: Format specifier. public enum ALFormat : int { - ///1 Channel, 8 Bits per sample. + ///1 Channel, 8 bits per sample. Mono8 = 0x1100, - ///1 Channel, 16 Bits per sample. + ///1 Channel, 16 bits per sample. Mono16 = 0x1101, - ///2 Channels, 8 Bits per sample each. + ///2 Channels, 8 bits per sample each. Stereo8 = 0x1102, - ///2 Channels, 16 Bits per sample each. + ///2 Channels, 16 bits per sample each. Stereo16 = 0x1103, /// 1 Channel, A-law encoded data. Requires Extension: AL_EXT_ALAW @@ -264,56 +264,56 @@ namespace OpenTK.Audio.OpenAL /// 2 Channels, double-precision floating-point data. Requires Extension: AL_EXT_double StereoDoubleExt = 0x10013, - /// Multichannel 5.1, 16 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 5.1, 16-bit data. Requires Extension: AL_EXT_MCFORMATS Multi51Chn16Ext = 0x120B, - /// Multichannel 5.1, 32 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 5.1, 32-bit data. Requires Extension: AL_EXT_MCFORMATS Multi51Chn32Ext = 0x120C, - /// Multichannel 5.1, 8 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 5.1, 8-bit data. Requires Extension: AL_EXT_MCFORMATS Multi51Chn8Ext = 0x120A, - /// Multichannel 6.1, 16 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 6.1, 16-bit data. Requires Extension: AL_EXT_MCFORMATS Multi61Chn16Ext = 0x120E, - /// Multichannel 6.1, 32 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 6.1, 32-bit data. Requires Extension: AL_EXT_MCFORMATS Multi61Chn32Ext = 0x120F, - /// Multichannel 6.1, 8 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 6.1, 8-bit data. Requires Extension: AL_EXT_MCFORMATS Multi61Chn8Ext = 0x120D, - /// Multichannel 7.1, 16 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 7.1, 16-bit data. Requires Extension: AL_EXT_MCFORMATS Multi71Chn16Ext = 0x1211, - /// Multichannel 7.1, 32 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 7.1, 32-bit data. Requires Extension: AL_EXT_MCFORMATS Multi71Chn32Ext = 0x1212, - /// Multichannel 7.1, 8 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 7.1, 8-bit data. Requires Extension: AL_EXT_MCFORMATS Multi71Chn8Ext = 0x1210, - /// Multichannel 4.0, 16 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 4.0, 16-bit data. Requires Extension: AL_EXT_MCFORMATS MultiQuad16Ext = 0x1205, - /// Multichannel 4.0, 32 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 4.0, 32-bit data. Requires Extension: AL_EXT_MCFORMATS MultiQuad32Ext = 0x1206, - /// Multichannel 4.0, 8 Bits data. Requires Extension: AL_EXT_MCFORMATS + /// Multichannel 4.0, 8-bit data. Requires Extension: AL_EXT_MCFORMATS MultiQuad8Ext = 0x1204, - /// 1 Channel rear speaker, 16 Bits data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS + /// 1 Channel rear speaker, 16-bit data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS MultiRear16Ext = 0x1208, - /// 1 Channel rear speaker, 32 Bits data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS + /// 1 Channel rear speaker, 32-bit data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS MultiRear32Ext = 0x1209, - /// 1 Channel rear speaker, 8 Bits data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS + /// 1 Channel rear speaker, 8-bit data. See Quadrophonic setups. Requires Extension: AL_EXT_MCFORMATS MultiRear8Ext = 0x1207, } ///A list of valid Int32 GetBuffer parameters public enum ALGetBufferi : int { - ///Sound sample's frequency, in units of Hertz [Hz]. This is the number of samples per second. Half of the sample frequency marks the maximum significant frequency component. + ///Sound sample's frequency, in units of hertz [Hz]. This is the number of samples per second. Half of the sample frequency marks the maximum significant frequency component. Frequency = 0x2001, /// Bit depth of the buffer. Should be 8 or 16. @@ -383,7 +383,7 @@ namespace OpenTK.Audio.OpenAL Extensions = 0xB004, } - ///A list of valid 32-Bits Float AL.Get() parameters + ///A list of valid 32-bit Float AL.Get() parameters public enum ALGetFloat : int { ///Doppler scale. Default 1.0f diff --git a/Source/OpenTK/Audio/OpenAL/AL/EffectsExtension.cs b/Source/OpenTK/Audio/OpenAL/AL/EffectsExtension.cs index 80d9eeff..8d744217 100644 --- a/Source/OpenTK/Audio/OpenAL/AL/EffectsExtension.cs +++ b/Source/OpenTK/Audio/OpenAL/AL/EffectsExtension.cs @@ -351,20 +351,20 @@ namespace OpenTK.Audio.OpenAL //[CLSCompliant(false)] private Delegate_alEffectf Imported_alEffectf; - /// This function is used to set floating point properties on Effect objects. + /// This function is used to set floating-point properties on Effect objects. /// Effect object identifier. /// Effect property to set. - /// Floating point value. + /// Floating-point value. [CLSCompliant(false)] public void Effect(uint eid, EfxEffectf param, float value) { Imported_alEffectf(eid, param, value); } - /// This function is used to set floating point properties on Effect objects. + /// This function is used to set floating-point properties on Effect objects. /// Effect object identifier. /// Effect property to set. - /// Floating point value. + /// Floating-point value. public void Effect(int eid, EfxEffectf param, float value) { @@ -382,7 +382,7 @@ namespace OpenTK.Audio.OpenAL //[CLSCompliant(false)] private Delegate_alEffectfv Imported_alEffectfv; - /// This function is used to set 3 floating point properties on Effect objects. + /// This function is used to set 3 floating-point properties on Effect objects. /// Effect object identifier. /// Effect property to set. /// Pointer to Math.Vector3. @@ -398,7 +398,7 @@ namespace OpenTK.Audio.OpenAL } } - /// This function is used to set 3 floating point properties on Effect objects. + /// This function is used to set 3 floating-point properties on Effect objects. /// Effect object identifier. /// Effect property to set. /// Pointer to Math.Vector3. @@ -456,10 +456,10 @@ namespace OpenTK.Audio.OpenAL //[CLSCompliant(false)] private Delegate_alGetEffectf Imported_alGetEffectf; - /// This function is used to retrieve floating point properties from Effect objects. + /// This function is used to retrieve floating-point properties from Effect objects. /// Effect object identifier. /// Effect property to retrieve. - /// Address where floating point value will be stored. + /// Address where floating-point value will be stored. [CLSCompliant(false)] public void GetEffect(uint eid, EfxEffectf pname, out float value) { @@ -472,10 +472,10 @@ namespace OpenTK.Audio.OpenAL } } - /// This function is used to retrieve floating point properties from Effect objects. + /// This function is used to retrieve floating-point properties from Effect objects. /// Effect object identifier. /// Effect property to retrieve. - /// Address where floating point value will be stored. + /// Address where floating-point value will be stored. public void GetEffect(int eid, EfxEffectf pname, out float value) { @@ -493,7 +493,7 @@ namespace OpenTK.Audio.OpenAL //[CLSCompliant(false)] private Delegate_alGetEffectfv Imported_alGetEffectfv; - /// This function is used to retrieve 3 floating point properties from Effect objects. + /// This function is used to retrieve 3 floating-point properties from Effect objects. /// Effect object identifier. /// Effect property to retrieve. /// A Math.Vector3 to hold the values. @@ -512,7 +512,7 @@ namespace OpenTK.Audio.OpenAL } } - /// This function is used to retrieve 3 floating point properties from Effect objects. + /// This function is used to retrieve 3 floating-point properties from Effect objects. /// Effect object identifier. /// Effect property to retrieve. /// A Math.Vector3 to hold the values. @@ -761,20 +761,20 @@ namespace OpenTK.Audio.OpenAL //[CLSCompliant(false)] private Delegate_alFilterf Imported_alFilterf; - /// This function is used to set floating point properties on Filter objects. + /// This function is used to set floating-point properties on Filter objects. /// Filter object identifier. /// Effect property to set. - /// Floating point value. + /// Floating-point value. [CLSCompliant(false)] public void Filter(uint fid, EfxFilterf param, float value) { Imported_alFilterf(fid, param, value); } - /// This function is used to set floating point properties on Filter objects. + /// This function is used to set floating-point properties on Filter objects. /// Filter object identifier. /// Effect property to set. - /// Floating point value. + /// Floating-point value. public void Filter(int fid, EfxFilterf param, float value) { @@ -829,10 +829,10 @@ namespace OpenTK.Audio.OpenAL //[CLSCompliant(false)] private Delegate_alGetFilterf Imported_alGetFilterf; - /// This function is used to retrieve floating point properties from Filter objects. + /// This function is used to retrieve floating-point properties from Filter objects. /// Filter object identifier. /// Effect property to retrieve. - /// Address where floating point value will be stored. + /// Address where floating-point value will be stored. [CLSCompliant(false)] public void GetFilter(uint fid, EfxFilterf pname, out float value) { @@ -845,10 +845,10 @@ namespace OpenTK.Audio.OpenAL } } - /// This function is used to retrieve floating point properties from Filter objects. + /// This function is used to retrieve floating-point properties from Filter objects. /// Filter object identifier. /// Effect property to retrieve. - /// Address where floating point value will be stored. + /// Address where floating-point value will be stored. public void GetFilter(int fid, EfxFilterf pname, out float value) { @@ -1092,20 +1092,20 @@ namespace OpenTK.Audio.OpenAL //[CLSCompliant(false)] private Delegate_alAuxiliaryEffectSlotf Imported_alAuxiliaryEffectSlotf; - /// This function is used to set floating point properties on Auxiliary Effect Slot objects. + /// This function is used to set floating-point properties on Auxiliary Effect Slot objects. /// Auxiliary Effect Slot object identifier. /// Auxiliary Effect Slot property to set. - /// Floating point value. + /// Floating-point value. [CLSCompliant(false)] public void AuxiliaryEffectSlot(uint asid, EfxAuxiliaryf param, float value) { Imported_alAuxiliaryEffectSlotf(asid, param, value); } - /// This function is used to set floating point properties on Auxiliary Effect Slot objects. + /// This function is used to set floating-point properties on Auxiliary Effect Slot objects. /// Auxiliary Effect Slot object identifier. /// Auxiliary Effect Slot property to set. - /// Floating point value. + /// Floating-point value. public void AuxiliaryEffectSlot(int asid, EfxAuxiliaryf param, float value) { @@ -1163,7 +1163,7 @@ namespace OpenTK.Audio.OpenAL /// This function is used to retrieve floating properties on Auxiliary Effect Slot objects. /// Auxiliary Effect Slot object identifier. /// Auxiliary Effect Slot property to retrieve. - /// Address where floating point value will be stored. + /// Address where floating-point value will be stored. [CLSCompliant(false)] public void GetAuxiliaryEffectSlot(uint asid, EfxAuxiliaryf pname, out float value) { @@ -1179,7 +1179,7 @@ namespace OpenTK.Audio.OpenAL /// This function is used to retrieve floating properties on Auxiliary Effect Slot objects. /// Auxiliary Effect Slot object identifier. /// Auxiliary Effect Slot property to retrieve. - /// Address where floating point value will be stored. + /// Address where floating-point value will be stored. public void GetAuxiliaryEffectSlot(int asid, EfxAuxiliaryf pname, out float value) { diff --git a/Source/OpenTK/Audio/OpenAL/AL/EffectsExtensionEnums.cs b/Source/OpenTK/Audio/OpenAL/AL/EffectsExtensionEnums.cs index 93d71694..313f213f 100644 --- a/Source/OpenTK/Audio/OpenAL/AL/EffectsExtensionEnums.cs +++ b/Source/OpenTK/Audio/OpenAL/AL/EffectsExtensionEnums.cs @@ -13,7 +13,7 @@ namespace OpenTK.Audio.OpenAL { #region Effect - ///A list of valid 32-Bits Float Effect/GetEffect parameters + ///A list of valid 32-bit Float Effect/GetEffect parameters public enum EfxEffectf : int { ///Reverb Modal Density controls the coloration of the late reverb. Lowering the value adds more coloration to the late reverb. Range [0.0f .. 1.0f] Default: 1.0f @@ -424,7 +424,7 @@ namespace OpenTK.Audio.OpenAL EffectslotAuxiliarySendAuto = 0x0003, } - ///A list of valid 32-Bits Float AuxiliaryEffectSlot/GetAuxiliaryEffectSlot parameters + ///A list of valid 32-bits Float AuxiliaryEffectSlot/GetAuxiliaryEffectSlot parameters public enum EfxAuxiliaryf : int { /// This property is used to specify an output level for the Auxiliary Effect Slot. Setting the gain to 0.0f mutes the output. Range [0.0f .. 1.0f] Default: 1.0f @@ -435,7 +435,7 @@ namespace OpenTK.Audio.OpenAL #region Filter Object - ///A list of valid 32-Bits Float Filter/GetFilter parameters + ///A list of valid 32-bits Float Filter/GetFilter parameters public enum EfxFilterf : int { ///Range [0.0f .. 1.0f] Default: 1.0f diff --git a/Source/OpenTK/Math/Half.cs b/Source/OpenTK/Math/Half.cs index 30e2caab..3e5f4063 100644 --- a/Source/OpenTK/Math/Half.cs +++ b/Source/OpenTK/Math/Half.cs @@ -66,7 +66,7 @@ namespace OpenTK /// /// The name Half is derived from half-precision floating-point number. - /// It occupies only 16 Bits, which are split into 1 Sign bit, 5 Exponent bits and 10 Mantissa bits. + /// It occupies only 16 bits, which are split into 1 Sign bit, 5 Exponent bits and 10 Mantissa bits. /// /// /// Quote from ARB_half_float_pixel specification: @@ -103,9 +103,9 @@ namespace OpenTK #region Constructors /// - /// The new Half instance will convert the parameter into 16-Bit Half precision floating point. + /// The new Half instance will convert the parameter into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. public Half(Single f) : this() { @@ -116,9 +116,9 @@ namespace OpenTK } /// - /// The new Half instance will convert the parameter into 16-Bit Half precision floating point. + /// The new Half instance will convert the parameter into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. /// Enable checks that will throw if the conversion result is not meaningful. public Half(Single f, bool throwOnError) : this(f) @@ -130,22 +130,22 @@ namespace OpenTK if (f < -Half.MaxValue) throw new ArithmeticException("Half: Negative minimum value exceeded."); // handle cases that make no sense - if (Single.IsNaN(f)) throw new ArithmeticException("Half: input is Not a Number (NaN)."); - if (Single.IsPositiveInfinity(f)) throw new ArithmeticException("Half: input is +infinity."); - if (Single.IsNegativeInfinity(f)) throw new ArithmeticException("Half: input is -infinity."); + if (Single.IsNaN(f)) throw new ArithmeticException("Half: Input is not a number (NaN)."); + if (Single.IsPositiveInfinity(f)) throw new ArithmeticException("Half: Input is positive infinity."); + if (Single.IsNegativeInfinity(f)) throw new ArithmeticException("Half: Input is negative infinity."); } } /// - /// The new Half instance will convert the parameter into 16-Bit Half precision floating point. + /// The new Half instance will convert the parameter into 16-bit half-precision floating-point. /// - /// 64-Bit Double precision floating point number. + /// 64-bit double-precision floating-point number. public Half(Double d) : this((Single)d) { } /// - /// The new Half instance will convert the parameter into 16-Bit Half precision floating point. + /// The new Half instance will convert the parameter into 16-bit half-precision floating-point. /// - /// 64-Bit Double precision floating point number. + /// 64-bit double-precision floating-point number. /// Enable checks that will throw if the conversion result is not meaningful. public Half(Double d, bool throwOnError) : this((Single)d, throwOnError) { } @@ -235,7 +235,7 @@ namespace OpenTK } // exponent overflow - if (exponent > 30) throw new ArithmeticException("Half: hardware floating point overflow."); + if (exponent > 30) throw new ArithmeticException("Half: Hardware floating-point overflow."); // Assemble the half from S, E and M. @@ -247,8 +247,8 @@ namespace OpenTK #region Half -> Single - /// Converts the 16-Bit half to 32-Bit floating point. - /// A Single precision floating point Number. + /// Converts the 16-bit half to 32-bit floating-point. + /// A single-precision floating-point number. public Single ToSingle() { int i = HalfToFloat(bits); @@ -504,7 +504,7 @@ namespace OpenTK } /// Converts this Half into a human-legible string representation. - /// formatting for the output string. + /// Formatting for the output string. /// Culture-specific formatting information. /// The string representation of this instance. public string ToString(string format, IFormatProvider formatProvider) @@ -516,17 +516,17 @@ namespace OpenTK #region String -> Half - /// Converts the string representation of a number to a Half precision floating point equivalent. - /// string representation of the number to convert. + /// Converts the string representation of a number to a half-precision floating-point equivalent. + /// String representation of the number to convert. /// A new Half instance. public static Half Parse(string s) { return (Half)Single.Parse(s); } - /// Converts the string representation of a number to a Half precision floating point equivalent. - /// string representation of the number to convert. - /// specifies the format of s. + /// Converts the string representation of a number to a half-precision floating-point equivalent. + /// String representation of the number to convert. + /// Specifies the format of s. /// Culture-specific formatting information. /// A new Half instance. public static Half Parse(string s, System.Globalization.NumberStyles style, IFormatProvider provider) @@ -534,8 +534,8 @@ namespace OpenTK return (Half)Single.Parse(s, style, provider); } - /// Converts the string representation of a number to a Half precision floating point equivalent. Returns success. - /// string representation of the number to convert. + /// Converts the string representation of a number to a half-precision floating-point equivalent. Returns success. + /// String representation of the number to convert. /// The Half instance to write to. /// Success. public static bool TryParse(string s, out Half result) @@ -546,9 +546,9 @@ namespace OpenTK return b; } - /// Converts the string representation of a number to a Half precision floating point equivalent. Returns success. - /// string representation of the number to convert. - /// specifies the format of s. + /// Converts the string representation of a number to a half-precision floating-point equivalent. Returns success. + /// String representation of the number to convert. + /// Specifies the format of s. /// Culture-specific formatting information. /// The Half instance to write to. /// Success. diff --git a/Source/OpenTK/Math/Matrix3d.cs b/Source/OpenTK/Math/Matrix3d.cs index 29db6bd6..800d799b 100644 --- a/Source/OpenTK/Math/Matrix3d.cs +++ b/Source/OpenTK/Math/Matrix3d.cs @@ -270,7 +270,7 @@ namespace OpenTK this.R2C2 = r2c2; } - /// Constructs left matrix from the given array of double-precision floating point numbers. + /// Constructs left matrix from the given array of double-precision floating-point numbers. /// The array of doubles for the components of the matrix. public Matrix3d(double[] doubleArray) { diff --git a/Source/OpenTK/Math/Quaterniond.cs b/Source/OpenTK/Math/Quaterniond.cs index c9820db4..9f116f93 100644 --- a/Source/OpenTK/Math/Quaterniond.cs +++ b/Source/OpenTK/Math/Quaterniond.cs @@ -741,7 +741,7 @@ namespace OpenTK this.Z = z; } - /// Constructs left Quaterniond from the given array of double-precision floating point numbers. + /// Constructs left Quaterniond from the given array of double-precision floating-point numbers. /// The array of doubles for the components of the Quaterniond. public Quaterniond(double[] doubleArray) { diff --git a/Source/OpenTK/Math/Vector2h.cs b/Source/OpenTK/Math/Vector2h.cs index 1b0cbe5b..28bc8e40 100644 --- a/Source/OpenTK/Math/Vector2h.cs +++ b/Source/OpenTK/Math/Vector2h.cs @@ -49,8 +49,8 @@ namespace OpenTK /// /// The new Half2 instance will avoid conversion and copy directly from the Half parameters. /// - /// An Half instance of a 16-Bit half precision floating point number. - /// An Half instance of a 16-Bit half precision floating point number. + /// An Half instance of a 16-bit half-precision floating-point number. + /// An Half instance of a 16-bit half-precision floating-point number. public Vector2h(Half x, Half y) { X = x; @@ -58,10 +58,10 @@ namespace OpenTK } /// - /// The new Half2 instance will convert the 2 parameters into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the 2 parameters into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. public Vector2h(Single x, Single y) { X = new Half(x); @@ -69,10 +69,10 @@ namespace OpenTK } /// - /// The new Half2 instance will convert the 2 parameters into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the 2 parameters into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. /// Enable checks that will throw if the conversion result is not meaningful. public Vector2h(Single x, Single y, bool throwOnError) { @@ -81,7 +81,7 @@ namespace OpenTK } /// - /// The new Half2 instance will convert the Vector2 into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2 into 16-bit half-precision floating-point. /// /// OpenTK.Vector2 [CLSCompliant(false)] @@ -92,7 +92,7 @@ namespace OpenTK } /// - /// The new Half2 instance will convert the Vector2 into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2 into 16-bit half-precision floating-point. /// /// OpenTK.Vector2 /// Enable checks that will throw if the conversion result is not meaningful. @@ -104,7 +104,7 @@ namespace OpenTK } /// - /// The new Half2 instance will convert the Vector2 into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2 into 16-bit half-precision floating-point. /// This is the fastest constructor. /// /// OpenTK.Vector2 @@ -115,7 +115,7 @@ namespace OpenTK } /// - /// The new Half2 instance will convert the Vector2 into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2 into 16-bit half-precision floating-point. /// /// OpenTK.Vector2 /// Enable checks that will throw if the conversion result is not meaningful. @@ -126,7 +126,7 @@ namespace OpenTK } /// - /// The new Half2 instance will convert the Vector2d into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2d into 16-bit half-precision floating-point. /// /// OpenTK.Vector2d public Vector2h(Vector2d v) @@ -136,7 +136,7 @@ namespace OpenTK } /// - /// The new Half2 instance will convert the Vector2d into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2d into 16-bit half-precision floating-point. /// /// OpenTK.Vector2d /// Enable checks that will throw if the conversion result is not meaningful. @@ -147,7 +147,7 @@ namespace OpenTK } /// - /// The new Half2 instance will convert the Vector2d into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2d into 16-bit half-precision floating-point. /// This is the faster constructor. /// /// OpenTK.Vector2d @@ -159,7 +159,7 @@ namespace OpenTK } /// - /// The new Half2 instance will convert the Vector2d into 16-Bit Half precision floating point. + /// The new Half2 instance will convert the Vector2d into 16-bit half-precision floating-point. /// /// OpenTK.Vector2d /// Enable checks that will throw if the conversion result is not meaningful. diff --git a/Source/OpenTK/Math/Vector3h.cs b/Source/OpenTK/Math/Vector3h.cs index 58825ca6..973bbad8 100644 --- a/Source/OpenTK/Math/Vector3h.cs +++ b/Source/OpenTK/Math/Vector3h.cs @@ -54,9 +54,9 @@ namespace OpenTK /// /// The new Half3 instance will avoid conversion and copy directly from the Half parameters. /// - /// An Half instance of a 16-Bit half precision floating point number. - /// An Half instance of a 16-Bit half precision floating point number. - /// An Half instance of a 16-Bit half precision floating point number. + /// An Half instance of a 16-bit half-precision floating-point number. + /// An Half instance of a 16-bit half-precision floating-point number. + /// An Half instance of a 16-bit half-precision floating-point number. public Vector3h(Half x, Half y, Half z) { this.X = x; @@ -65,11 +65,11 @@ namespace OpenTK } /// - /// The new Half3 instance will convert the 3 parameters into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the 3 parameters into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. public Vector3h(Single x, Single y, Single z) { X = new Half(x); @@ -78,11 +78,11 @@ namespace OpenTK } /// - /// The new Half3 instance will convert the 3 parameters into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the 3 parameters into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. /// Enable checks that will throw if the conversion result is not meaningful. public Vector3h(Single x, Single y, Single z, bool throwOnError) { @@ -92,7 +92,7 @@ namespace OpenTK } /// - /// The new Half3 instance will convert the Vector3 into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3 into 16-bit half-precision floating-point. /// /// OpenTK.Vector3 [CLSCompliant(false)] @@ -104,7 +104,7 @@ namespace OpenTK } /// - /// The new Half3 instance will convert the Vector3 into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3 into 16-bit half-precision floating-point. /// /// OpenTK.Vector3 /// Enable checks that will throw if the conversion result is not meaningful. @@ -117,7 +117,7 @@ namespace OpenTK } /// - /// The new Half3 instance will convert the Vector3 into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3 into 16-bit half-precision floating-point. /// This is the fastest constructor. /// /// OpenTK.Vector3 @@ -129,7 +129,7 @@ namespace OpenTK } /// - /// The new Half3 instance will convert the Vector3 into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3 into 16-bit half-precision floating-point. /// /// OpenTK.Vector3 /// Enable checks that will throw if the conversion result is not meaningful. @@ -141,7 +141,7 @@ namespace OpenTK } /// - /// The new Half3 instance will convert the Vector3d into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3d into 16-bit half-precision floating-point. /// /// OpenTK.Vector3d public Vector3h(Vector3d v) @@ -152,7 +152,7 @@ namespace OpenTK } /// - /// The new Half3 instance will convert the Vector3d into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3d into 16-bit half-precision floating-point. /// /// OpenTK.Vector3d /// Enable checks that will throw if the conversion result is not meaningful. @@ -164,7 +164,7 @@ namespace OpenTK } /// - /// The new Half3 instance will convert the Vector3d into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3d into 16-bit half-precision floating-point. /// This is the faster constructor. /// /// OpenTK.Vector3d @@ -177,7 +177,7 @@ namespace OpenTK } /// - /// The new Half3 instance will convert the Vector3d into 16-Bit Half precision floating point. + /// The new Half3 instance will convert the Vector3d into 16-bit half-precision floating-point. /// /// OpenTK.Vector3d /// Enable checks that will throw if the conversion result is not meaningful. diff --git a/Source/OpenTK/Math/Vector4h.cs b/Source/OpenTK/Math/Vector4h.cs index f6b2e617..744c1436 100644 --- a/Source/OpenTK/Math/Vector4h.cs +++ b/Source/OpenTK/Math/Vector4h.cs @@ -57,10 +57,10 @@ namespace OpenTK /// /// The new Half4 instance will avoid conversion and copy directly from the Half parameters. /// - /// An Half instance of a 16-Bit half precision floating point number. - /// An Half instance of a 16-Bit half precision floating point number. - /// An Half instance of a 16-Bit half precision floating point number. - /// An Half instance of a 16-Bit half precision floating point number. + /// An Half instance of a 16-bit half-precision floating-point number. + /// An Half instance of a 16-bit half-precision floating-point number. + /// An Half instance of a 16-bit half-precision floating-point number. + /// An Half instance of a 16-bit half-precision floating-point number. public Vector4h(Half x, Half y, Half z, Half w) { this.X = x; @@ -70,12 +70,12 @@ namespace OpenTK } /// - /// The new Half4 instance will convert the 4 parameters into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the 4 parameters into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. public Vector4h(Single x, Single y, Single z, Single w) { X = new Half(x); @@ -85,12 +85,12 @@ namespace OpenTK } /// - /// The new Half4 instance will convert the 4 parameters into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the 4 parameters into 16-bit half-precision floating-point. /// - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. - /// 32-Bit Single precision floating point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. + /// 32-bit single-precision floating-point number. /// Enable checks that will throw if the conversion result is not meaningful. public Vector4h(Single x, Single y, Single z, Single w, bool throwOnError) { @@ -101,7 +101,7 @@ namespace OpenTK } /// - /// The new Half4 instance will convert the Vector4 into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4 into 16-bit half-precision floating-point. /// /// OpenTK.Vector4 [CLSCompliant(false)] @@ -114,7 +114,7 @@ namespace OpenTK } /// - /// The new Half4 instance will convert the Vector4 into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4 into 16-bit half-precision floating-point. /// /// OpenTK.Vector4 /// Enable checks that will throw if the conversion result is not meaningful. @@ -128,7 +128,7 @@ namespace OpenTK } /// - /// The new Half4 instance will convert the Vector4 into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4 into 16-bit half-precision floating-point. /// This is the fastest constructor. /// /// OpenTK.Vector4 @@ -141,7 +141,7 @@ namespace OpenTK } /// - /// The new Half4 instance will convert the Vector4 into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4 into 16-bit half-precision floating-point. /// /// OpenTK.Vector4 /// Enable checks that will throw if the conversion result is not meaningful. @@ -154,7 +154,7 @@ namespace OpenTK } /// - /// The new Half4 instance will convert the Vector4d into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4d into 16-bit half-precision floating-point. /// /// OpenTK.Vector4d public Vector4h(Vector4d v) @@ -166,7 +166,7 @@ namespace OpenTK } /// - /// The new Half4 instance will convert the Vector4d into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4d into 16-bit half-precision floating-point. /// /// OpenTK.Vector4d /// Enable checks that will throw if the conversion result is not meaningful. @@ -179,7 +179,7 @@ namespace OpenTK } /// - /// The new Half4 instance will convert the Vector4d into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4d into 16-bit half-precision floating-point. /// This is the faster constructor. /// /// OpenTK.Vector4d @@ -193,7 +193,7 @@ namespace OpenTK } /// - /// The new Half4 instance will convert the Vector4d into 16-Bit Half precision floating point. + /// The new Half4 instance will convert the Vector4d into 16-bit half-precision floating-point. /// /// OpenTK.Vector4d /// Enable checks that will throw if the conversion result is not meaningful.