本文整理汇总了C#中Source.H_Origin方法的典型用法代码示例。如果您正苦于以下问题:C# Source.H_Origin方法的具体用法?C# Source.H_Origin怎么用?C# Source.H_Origin使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Source
的用法示例。
在下文中一共展示了Source.H_Origin方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AddDirect
/// <summary>
/// Adds the direct sound to the collection of histograms.
/// </summary>
/// <param name="D">a completed direct sound simulation</param>
/// <param name="S">the source object</param>
public void AddDirect(Direct_Sound D, Source S)
{
for (int i = 0; i < Rec_List.Length; i++)
{
Vector dir = S.H_Origin() - Rec_List[i].H_Origin;
dir.Normalize();
for (int oct = 0; oct < 8; oct++)
{
int tsample = 0;
int length = D.Io[i][oct].Length;
for (int s = 0; s < length; s++)
{
if (D.EnergyValue(oct, s, i) > 0 && tsample == 0) tsample = s;
if (s < Rec_List[i].Recs.SampleCT && D.Validity[i]) Rec_List[i].Combine_Sample(s - tsample, D.EnergyValue(oct, s, i), dir, dir, oct);
}
}
}
}