diff --git a/.bonsai/.gitignore b/.bonsai/.gitignore
new file mode 100644
index 0000000..16e6b2f
--- /dev/null
+++ b/.bonsai/.gitignore
@@ -0,0 +1,3 @@
+*.exe
+*.exe.*
+Packages
\ No newline at end of file
diff --git a/.bonsai/Bonsai.config b/.bonsai/Bonsai.config
new file mode 100644
index 0000000..d857ae2
--- /dev/null
+++ b/.bonsai/Bonsai.config
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.bonsai/NuGet.config b/.bonsai/NuGet.config
new file mode 100644
index 0000000..97e8b73
--- /dev/null
+++ b/.bonsai/NuGet.config
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/.bonsai/Setup.cmd b/.bonsai/Setup.cmd
new file mode 100644
index 0000000..92d983d
--- /dev/null
+++ b/.bonsai/Setup.cmd
@@ -0,0 +1,4 @@
+@echo off
+pushd %~dp0
+powershell -ExecutionPolicy Bypass -File ./Setup.ps1
+popd
\ No newline at end of file
diff --git a/.bonsai/Setup.ps1 b/.bonsai/Setup.ps1
new file mode 100644
index 0000000..01cfba6
--- /dev/null
+++ b/.bonsai/Setup.ps1
@@ -0,0 +1,21 @@
+Push-Location $PSScriptRoot
+if (!(Test-Path "./Bonsai.exe")) {
+ $release = "https://github.com/bonsai-rx/bonsai/releases/latest/download/Bonsai.zip"
+ $configPath = "./Bonsai.config"
+ if (Test-Path $configPath) {
+ [xml]$config = Get-Content $configPath
+ $bootstrapper = $config.PackageConfiguration.Packages.Package.where{$_.id -eq 'Bonsai'}
+ if ($bootstrapper) {
+ $version = $bootstrapper.version
+ $release = "https://github.com/bonsai-rx/bonsai/releases/download/$version/Bonsai.zip"
+ }
+ }
+ Invoke-WebRequest $release -OutFile "temp.zip"
+ Move-Item -Path "NuGet.config" "temp.config" -ErrorAction SilentlyContinue
+ Expand-Archive "temp.zip" -DestinationPath "." -Force
+ Move-Item -Path "temp.config" "NuGet.config" -Force -ErrorAction SilentlyContinue
+ Remove-Item -Path "temp.zip"
+ Remove-Item -Path "Bonsai32.exe"
+}
+& .\Bonsai.exe --no-editor
+Pop-Location
\ No newline at end of file
diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json
new file mode 100644
index 0000000..ef30df8
--- /dev/null
+++ b/.config/dotnet-tools.json
@@ -0,0 +1,12 @@
+{
+ "version": 1,
+ "isRoot": true,
+ "tools": {
+ "docfx": {
+ "version": "2.77.0",
+ "commands": [
+ "docfx"
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..177a2e0
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,28 @@
+name: Build
+
+on:
+ push:
+ branches: [ main ]
+ pull_request:
+ branches: [ main ]
+
+jobs:
+ build:
+ name: Build Solution
+ runs-on: windows-latest
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+
+ - name: Setup MSBuild
+ uses: microsoft/setup-msbuild@v1
+
+ - name: Setup NuGet
+ uses: NuGet/setup-nuget@v1.2.0
+
+ - name: Restore NuGet Packages
+ run: nuget restore src/BonVision.sln
+
+ - name: Build Solution
+ run: msbuild src/BonVision.sln /p:Configuration=Release
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
new file mode 100644
index 0000000..7e2035a
--- /dev/null
+++ b/.github/workflows/docs.yml
@@ -0,0 +1,59 @@
+# Builds and publishes the documentation website to gh-pages branch
+name: Build docs
+
+on:
+ workflow_dispatch:
+
+jobs:
+ build:
+ runs-on: windows-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4.1.1
+ with:
+ submodules: true
+
+ - name: Setup .NET Core SDK
+ uses: actions/setup-dotnet@v4.0.0
+ with:
+ dotnet-version: 8.x
+
+ - name: Setup MSBuild
+ uses: microsoft/setup-msbuild@v2
+
+ - name: Restore NuGet Packages
+ run: msbuild -t:restore src/BonVision.sln
+
+ - name: Build Solution
+ run: msbuild src/BonVision.sln /p:Configuration=Release
+
+ - name: Setup DocFX
+ run: dotnet tool restore
+
+ - name: Setup Bonsai
+ working-directory: .bonsai
+ run: .\Setup.ps1
+
+ - name: Setup Python
+ uses: actions/setup-python@v5
+ with:
+ python-version: '3.12'
+
+ - name: Setup Pyyaml
+ run: pip install pyyaml==6.0.2
+
+ - name: Build Documentation
+ working-directory: docs
+ run: .\build.ps1
+
+ - name: Checkout gh-pages
+ uses: actions/checkout@v4.1.1
+ with:
+ ref: gh-pages
+ path: gh-pages
+ - name: Publish to github pages
+ uses: peaceiris/actions-gh-pages@v3.9.3
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ publish_dir: docs/_site
+ force_orphan: true
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index 0250b80..923638a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,12 @@
.vs
+.venv
bin
obj
-packages
\ No newline at end of file
+packages
+*.orig
+*.user
+*.suo
+*.exe
+*.exe.settings
+*.exe.old
+*.dll
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..819d13c
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,4 @@
+[submodule "docs/bonsai"]
+ path = docs/bonsai
+ url = https://github.com/banchan86/docfx-tools_dev
+ branch = api-template-includeworkflow
diff --git a/Extensions.csproj b/Extensions.csproj
deleted file mode 100644
index ccb564d..0000000
--- a/Extensions.csproj
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
- netstandard2.0
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Resources/BonVision.ico b/Resources/BonVision.ico
new file mode 100644
index 0000000..d98d6fc
Binary files /dev/null and b/Resources/BonVision.ico differ
diff --git a/Resources/Bonvision-Logo_png_converted.svg b/Resources/Bonvision-Logo_png_converted.svg
new file mode 100644
index 0000000..2d5322d
--- /dev/null
+++ b/Resources/Bonvision-Logo_png_converted.svg
@@ -0,0 +1,414 @@
+
\ No newline at end of file
diff --git a/Resources/Bonvision-Logo_png_converted_scaled.svg b/Resources/Bonvision-Logo_png_converted_scaled.svg
new file mode 100644
index 0000000..676593b
--- /dev/null
+++ b/Resources/Bonvision-Logo_png_converted_scaled.svg
@@ -0,0 +1,113 @@
+
+
diff --git a/Resources/Bonvision-Logo_png_converted_scaled_smaller.svg b/Resources/Bonvision-Logo_png_converted_scaled_smaller.svg
new file mode 100644
index 0000000..e5bf707
--- /dev/null
+++ b/Resources/Bonvision-Logo_png_converted_scaled_smaller.svg
@@ -0,0 +1,113 @@
+
+
diff --git a/docs/.gitignore b/docs/.gitignore
new file mode 100644
index 0000000..c08f9ad
--- /dev/null
+++ b/docs/.gitignore
@@ -0,0 +1 @@
+_site
\ No newline at end of file
diff --git a/docs/api/.gitignore b/docs/api/.gitignore
new file mode 100644
index 0000000..5bca622
--- /dev/null
+++ b/docs/api/.gitignore
@@ -0,0 +1,2 @@
+*.yml
+.manifest
\ No newline at end of file
diff --git a/docs/api/.manifest b/docs/api/.manifest
new file mode 100644
index 0000000..df3fbd6
--- /dev/null
+++ b/docs/api/.manifest
@@ -0,0 +1,357 @@
+{
+ "BonVision": "BonVision.yml",
+ "BonVision.AngleProperty": "BonVision.AngleProperty.yml",
+ "BonVision.AngleProperty.Process": "BonVision.AngleProperty.yml",
+ "BonVision.AngleProperty.Process``1(System.IObservable{``0})": "BonVision.AngleProperty.yml",
+ "BonVision.AngleProperty.Value": "BonVision.AngleProperty.yml",
+ "BonVision.AngleProperty.ValueXml": "BonVision.AngleProperty.yml",
+ "BonVision.Collections": "BonVision.Collections.yml",
+ "BonVision.Collections.CreateGratingTrial": "BonVision.Collections.CreateGratingTrial.yml",
+ "BonVision.Collections.CreateGratingTrial.#ctor": "BonVision.Collections.CreateGratingTrial.yml",
+ "BonVision.Collections.CreateGratingTrial.Contrast": "BonVision.Collections.CreateGratingTrial.yml",
+ "BonVision.Collections.CreateGratingTrial.Delay": "BonVision.Collections.CreateGratingTrial.yml",
+ "BonVision.Collections.CreateGratingTrial.Diameter": "BonVision.Collections.CreateGratingTrial.yml",
+ "BonVision.Collections.CreateGratingTrial.Duration": "BonVision.Collections.CreateGratingTrial.yml",
+ "BonVision.Collections.CreateGratingTrial.Orientation": "BonVision.Collections.CreateGratingTrial.yml",
+ "BonVision.Collections.CreateGratingTrial.OrientationXml": "BonVision.Collections.CreateGratingTrial.yml",
+ "BonVision.Collections.CreateGratingTrial.Process(System.IObservable{BonVision.Collections.GratingParameters})": "BonVision.Collections.CreateGratingTrial.yml",
+ "BonVision.Collections.CreateGratingTrial.Process``1(System.IObservable{``0})": "BonVision.Collections.CreateGratingTrial.yml",
+ "BonVision.Collections.CreateGratingTrial.SpatialFrequency": "BonVision.Collections.CreateGratingTrial.yml",
+ "BonVision.Collections.CreateGratingTrial.TemporalFrequency": "BonVision.Collections.CreateGratingTrial.yml",
+ "BonVision.Collections.CreateGratingTrial.X": "BonVision.Collections.CreateGratingTrial.yml",
+ "BonVision.Collections.CreateGratingTrial.Y": "BonVision.Collections.CreateGratingTrial.yml",
+ "BonVision.Collections.GratingParameters": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.Contrast": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.ContrastSpecified": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.Delay": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.DelaySpecified": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.Diameter": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.DiameterSpecified": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.Duration": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.DurationSpecified": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.Orientation": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.OrientationSpecified": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.OrientationXml": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.SpatialFrequency": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.SpatialFrequencySpecified": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.TemporalFrequency": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.TemporalFrequencySpecified": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.ToString": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.X": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.XSpecified": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.Y": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingParameters.YSpecified": "BonVision.Collections.GratingParameters.yml",
+ "BonVision.Collections.GratingSequence": "BonVision.Collections.GratingSequence.yml",
+ "BonVision.Collections.GratingSequence.Aperture": "BonVision.Collections.GratingSequence.yml",
+ "BonVision.Collections.GratingSequence.Opacity": "BonVision.Collections.GratingSequence.yml",
+ "BonVision.Collections.GratingSequence.Phase": "BonVision.Collections.GratingSequence.yml",
+ "BonVision.Collections.GratingSequence.Radius": "BonVision.Collections.GratingSequence.yml",
+ "BonVision.Collections.GratingSequence.SquareWave": "BonVision.Collections.GratingSequence.yml",
+ "BonVision.Collections.GratingTrial": "BonVision.Collections.GratingTrial.yml",
+ "BonVision.Collections.GratingTrial.Contrast": "BonVision.Collections.GratingTrial.yml",
+ "BonVision.Collections.GratingTrial.Delay": "BonVision.Collections.GratingTrial.yml",
+ "BonVision.Collections.GratingTrial.Diameter": "BonVision.Collections.GratingTrial.yml",
+ "BonVision.Collections.GratingTrial.Duration": "BonVision.Collections.GratingTrial.yml",
+ "BonVision.Collections.GratingTrial.Id": "BonVision.Collections.GratingTrial.yml",
+ "BonVision.Collections.GratingTrial.Orientation": "BonVision.Collections.GratingTrial.yml",
+ "BonVision.Collections.GratingTrial.SpatialFrequency": "BonVision.Collections.GratingTrial.yml",
+ "BonVision.Collections.GratingTrial.TemporalFrequency": "BonVision.Collections.GratingTrial.yml",
+ "BonVision.Collections.GratingTrial.ToString": "BonVision.Collections.GratingTrial.yml",
+ "BonVision.Collections.GratingTrial.X": "BonVision.Collections.GratingTrial.yml",
+ "BonVision.Collections.GratingTrial.Y": "BonVision.Collections.GratingTrial.yml",
+ "BonVision.Collections.GratingsSpecification": "BonVision.Collections.GratingsSpecification.yml",
+ "BonVision.Collections.GratingsSpecification.Process": "BonVision.Collections.GratingsSpecification.yml",
+ "BonVision.Collections.GratingsSpecification.Process``1(System.IObservable{``0})": "BonVision.Collections.GratingsSpecification.yml",
+ "BonVision.Collections.GratingsSpecification.Trials": "BonVision.Collections.GratingsSpecification.yml",
+ "BonVision.Collections.SparseNoise": "BonVision.Collections.SparseNoise.yml",
+ "BonVision.Collections.SparseNoise.ActiveQuads": "BonVision.Collections.SparseNoise.yml",
+ "BonVision.Collections.SparseNoise.Duration": "BonVision.Collections.SparseNoise.yml",
+ "BonVision.Collections.SparseNoise.GridSize": "BonVision.Collections.SparseNoise.yml",
+ "BonVision.CreateSparseNoiseGrid": "BonVision.CreateSparseNoiseGrid.yml",
+ "BonVision.CreateSparseNoiseGrid.ActiveQuads": "BonVision.CreateSparseNoiseGrid.yml",
+ "BonVision.CreateSparseNoiseGrid.Columns": "BonVision.CreateSparseNoiseGrid.yml",
+ "BonVision.CreateSparseNoiseGrid.Process``1(System.IObservable{``0})": "BonVision.CreateSparseNoiseGrid.yml",
+ "BonVision.CreateSparseNoiseGrid.Process``1(System.IObservable{``0},System.IObservable{System.Random})": "BonVision.CreateSparseNoiseGrid.yml",
+ "BonVision.CreateSparseNoiseGrid.Rows": "BonVision.CreateSparseNoiseGrid.yml",
+ "BonVision.CreateSphereGrid": "BonVision.CreateSphereGrid.yml",
+ "BonVision.CreateSphereGrid.#ctor": "BonVision.CreateSphereGrid.yml",
+ "BonVision.CreateSphereGrid.Bottom": "BonVision.CreateSphereGrid.yml",
+ "BonVision.CreateSphereGrid.Left": "BonVision.CreateSphereGrid.yml",
+ "BonVision.CreateSphereGrid.Process": "BonVision.CreateSphereGrid.yml",
+ "BonVision.CreateSphereGrid.Process``1(System.IObservable{``0})": "BonVision.CreateSphereGrid.yml",
+ "BonVision.CreateSphereGrid.Right": "BonVision.CreateSphereGrid.yml",
+ "BonVision.CreateSphereGrid.Top": "BonVision.CreateSphereGrid.yml",
+ "BonVision.CreateTextureScale": "BonVision.CreateTextureScale.yml",
+ "BonVision.CreateTextureScale.#ctor": "BonVision.CreateTextureScale.yml",
+ "BonVision.CreateTextureScale.Generate": "BonVision.CreateTextureScale.yml",
+ "BonVision.CreateTextureScale.Generate``1(System.IObservable{``0})": "BonVision.CreateTextureScale.yml",
+ "BonVision.CreateTextureScale.X": "BonVision.CreateTextureScale.yml",
+ "BonVision.CreateTextureScale.Y": "BonVision.CreateTextureScale.yml",
+ "BonVision.CreateTextureShift": "BonVision.CreateTextureShift.yml",
+ "BonVision.CreateTextureShift.Generate": "BonVision.CreateTextureShift.yml",
+ "BonVision.CreateTextureShift.Generate``1(System.IObservable{``0})": "BonVision.CreateTextureShift.yml",
+ "BonVision.CreateTextureShift.X": "BonVision.CreateTextureShift.yml",
+ "BonVision.CreateTextureShift.Y": "BonVision.CreateTextureShift.yml",
+ "BonVision.CreateVertexGrid": "BonVision.CreateVertexGrid.yml",
+ "BonVision.CreateVertexGrid.Process(System.IObservable{System.Single[]})": "BonVision.CreateVertexGrid.yml",
+ "BonVision.Environment.CubemapView": "BonVision.Environment.CubemapView.yml",
+ "BonVision.Environment.CubemapView.Eye": "BonVision.Environment.CubemapView.yml",
+ "BonVision.Environment.CubemapView.FarClip": "BonVision.Environment.CubemapView.yml",
+ "BonVision.Environment.CubemapView.Light": "BonVision.Environment.CubemapView.yml",
+ "BonVision.Environment.CubemapView.NearClip": "BonVision.Environment.CubemapView.yml",
+ "BonVision.Environment.DrawViewport": "BonVision.Environment.DrawViewport.yml",
+ "BonVision.Environment.DrawViewport.Height": "BonVision.Environment.DrawViewport.yml",
+ "BonVision.Environment.DrawViewport.Width": "BonVision.Environment.DrawViewport.yml",
+ "BonVision.Environment.DrawViewport.X": "BonVision.Environment.DrawViewport.yml",
+ "BonVision.Environment.DrawViewport.Y": "BonVision.Environment.DrawViewport.yml",
+ "BonVision.Environment.GammaCorrection": "BonVision.Environment.GammaCorrection.yml",
+ "BonVision.Environment.GammaCorrection.ClearColor": "BonVision.Environment.GammaCorrection.yml",
+ "BonVision.Environment.GammaCorrection.GammaLut": "BonVision.Environment.GammaCorrection.yml",
+ "BonVision.Environment.HmdView": "BonVision.Environment.HmdView.yml",
+ "BonVision.Environment.HmdView.Light": "BonVision.Environment.HmdView.yml",
+ "BonVision.Environment.MeshMapping": "BonVision.Environment.MeshMapping.yml",
+ "BonVision.Environment.MeshMapping.ClearColor": "BonVision.Environment.MeshMapping.yml",
+ "BonVision.Environment.MeshMapping.FileName": "BonVision.Environment.MeshMapping.yml",
+ "BonVision.Environment.NormalizedView": "BonVision.Environment.NormalizedView.yml",
+ "BonVision.Environment.OrthographicView": "BonVision.Environment.OrthographicView.yml",
+ "BonVision.Environment.OrthographicView.Bottom": "BonVision.Environment.OrthographicView.yml",
+ "BonVision.Environment.OrthographicView.Left": "BonVision.Environment.OrthographicView.yml",
+ "BonVision.Environment.OrthographicView.Right": "BonVision.Environment.OrthographicView.yml",
+ "BonVision.Environment.OrthographicView.Top": "BonVision.Environment.OrthographicView.yml",
+ "BonVision.Environment.PerspectiveMapping": "BonVision.Environment.PerspectiveMapping.yml",
+ "BonVision.Environment.PerspectiveMapping.ClearColor": "BonVision.Environment.PerspectiveMapping.yml",
+ "BonVision.Environment.PerspectiveMapping.Destination": "BonVision.Environment.PerspectiveMapping.yml",
+ "BonVision.Environment.PerspectiveView": "BonVision.Environment.PerspectiveView.yml",
+ "BonVision.Environment.PerspectiveView.Eye": "BonVision.Environment.PerspectiveView.yml",
+ "BonVision.Environment.PerspectiveView.FarClip": "BonVision.Environment.PerspectiveView.yml",
+ "BonVision.Environment.PerspectiveView.FieldOfView": "BonVision.Environment.PerspectiveView.yml",
+ "BonVision.Environment.PerspectiveView.Light": "BonVision.Environment.PerspectiveView.yml",
+ "BonVision.Environment.PerspectiveView.NearClip": "BonVision.Environment.PerspectiveView.yml",
+ "BonVision.Environment.PerspectiveView.Target": "BonVision.Environment.PerspectiveView.yml",
+ "BonVision.Environment.PerspectiveView.Up": "BonVision.Environment.PerspectiveView.yml",
+ "BonVision.Environment.RenderHmd": "BonVision.Environment.RenderHmd.yml",
+ "BonVision.Environment.SphereMapping": "BonVision.Environment.SphereMapping.yml",
+ "BonVision.Environment.SphereMapping.ClearColor": "BonVision.Environment.SphereMapping.yml",
+ "BonVision.Environment.SphereMapping.FaceSize": "BonVision.Environment.SphereMapping.yml",
+ "BonVision.Environment.SphereMapping.Height": "BonVision.Environment.SphereMapping.yml",
+ "BonVision.Environment.SphereMapping.RotationX": "BonVision.Environment.SphereMapping.yml",
+ "BonVision.Environment.SphereMapping.RotationY": "BonVision.Environment.SphereMapping.yml",
+ "BonVision.Environment.SphereMapping.RotationZ": "BonVision.Environment.SphereMapping.yml",
+ "BonVision.Environment.SphereMapping.Width": "BonVision.Environment.SphereMapping.yml",
+ "BonVision.Environment.ViewMapping": "BonVision.Environment.ViewMapping.yml",
+ "BonVision.Environment.ViewMapping.FileName": "BonVision.Environment.ViewMapping.yml",
+ "BonVision.Environment.ViewWindow": "BonVision.Environment.ViewWindow.yml",
+ "BonVision.Environment.ViewWindow.Height": "BonVision.Environment.ViewWindow.yml",
+ "BonVision.Environment.ViewWindow.Rotation": "BonVision.Environment.ViewWindow.yml",
+ "BonVision.Environment.ViewWindow.Translation": "BonVision.Environment.ViewWindow.yml",
+ "BonVision.Environment.ViewWindow.Width": "BonVision.Environment.ViewWindow.yml",
+ "BonVision.FieldOfViewProperty": "BonVision.FieldOfViewProperty.yml",
+ "BonVision.FieldOfViewProperty.#ctor": "BonVision.FieldOfViewProperty.yml",
+ "BonVision.FieldOfViewProperty.Process": "BonVision.FieldOfViewProperty.yml",
+ "BonVision.FieldOfViewProperty.Process``1(System.IObservable{``0})": "BonVision.FieldOfViewProperty.yml",
+ "BonVision.FieldOfViewProperty.Value": "BonVision.FieldOfViewProperty.yml",
+ "BonVision.FieldOfViewProperty.ValueXml": "BonVision.FieldOfViewProperty.yml",
+ "BonVision.Logging.EventLogger": "BonVision.Logging.EventLogger.yml",
+ "BonVision.Logging.EventLogger.Append": "BonVision.Logging.EventLogger.yml",
+ "BonVision.Logging.EventLogger.FileName": "BonVision.Logging.EventLogger.yml",
+ "BonVision.Logging.EventLogger.Name": "BonVision.Logging.EventLogger.yml",
+ "BonVision.Logging.EventLogger.Overwrite": "BonVision.Logging.EventLogger.yml",
+ "BonVision.Logging.EventLogger.Suffix": "BonVision.Logging.EventLogger.yml",
+ "BonVision.Logging.FrameEventLogger": "BonVision.Logging.FrameEventLogger.yml",
+ "BonVision.Logging.FrameEventLogger.Append": "BonVision.Logging.FrameEventLogger.yml",
+ "BonVision.Logging.FrameEventLogger.FileName": "BonVision.Logging.FrameEventLogger.yml",
+ "BonVision.Logging.FrameEventLogger.Name": "BonVision.Logging.FrameEventLogger.yml",
+ "BonVision.Logging.FrameEventLogger.Overwrite": "BonVision.Logging.FrameEventLogger.yml",
+ "BonVision.Logging.FrameEventLogger.Suffix": "BonVision.Logging.FrameEventLogger.yml",
+ "BonVision.Logging.LogEvent": "BonVision.Logging.LogEvent.yml",
+ "BonVision.Logging.LogEvent.Format": "BonVision.Logging.LogEvent.yml",
+ "BonVision.Logging.LogEvent.Name": "BonVision.Logging.LogEvent.yml",
+ "BonVision.Logging.LogEvent.Selector": "BonVision.Logging.LogEvent.yml",
+ "BonVision.OptionalFloatProperty": "BonVision.OptionalFloatProperty.yml",
+ "BonVision.OptionalFloatProperty.HasValue": "BonVision.OptionalFloatProperty.yml",
+ "BonVision.OptionalFloatProperty.Process": "BonVision.OptionalFloatProperty.yml",
+ "BonVision.OptionalFloatProperty.Process``1(System.IObservable{``0})": "BonVision.OptionalFloatProperty.yml",
+ "BonVision.OptionalFloatProperty.Value": "BonVision.OptionalFloatProperty.yml",
+ "BonVision.Primitives.BonVisionResources": "BonVision.Primitives.BonVisionResources.yml",
+ "BonVision.Primitives.DrawCheckerboard": "BonVision.Primitives.DrawCheckerboard.yml",
+ "BonVision.Primitives.DrawCheckerboard.Angle": "BonVision.Primitives.DrawCheckerboard.yml",
+ "BonVision.Primitives.DrawCheckerboard.ExtentX": "BonVision.Primitives.DrawCheckerboard.yml",
+ "BonVision.Primitives.DrawCheckerboard.ExtentY": "BonVision.Primitives.DrawCheckerboard.yml",
+ "BonVision.Primitives.DrawCheckerboard.Layer": "BonVision.Primitives.DrawCheckerboard.yml",
+ "BonVision.Primitives.DrawCheckerboard.LocationX": "BonVision.Primitives.DrawCheckerboard.yml",
+ "BonVision.Primitives.DrawCheckerboard.LocationY": "BonVision.Primitives.DrawCheckerboard.yml",
+ "BonVision.Primitives.DrawCheckerboard.NumberColumns": "BonVision.Primitives.DrawCheckerboard.yml",
+ "BonVision.Primitives.DrawCheckerboard.NumberRows": "BonVision.Primitives.DrawCheckerboard.yml",
+ "BonVision.Primitives.DrawCheckerboard.Phase": "BonVision.Primitives.DrawCheckerboard.yml",
+ "BonVision.Primitives.DrawCircle": "BonVision.Primitives.DrawCircle.yml",
+ "BonVision.Primitives.DrawCircle.ColorA": "BonVision.Primitives.DrawCircle.yml",
+ "BonVision.Primitives.DrawCircle.ColorB": "BonVision.Primitives.DrawCircle.yml",
+ "BonVision.Primitives.DrawCircle.ColorG": "BonVision.Primitives.DrawCircle.yml",
+ "BonVision.Primitives.DrawCircle.ColorR": "BonVision.Primitives.DrawCircle.yml",
+ "BonVision.Primitives.DrawCircle.Diameter": "BonVision.Primitives.DrawCircle.yml",
+ "BonVision.Primitives.DrawCircle.Layer": "BonVision.Primitives.DrawCircle.yml",
+ "BonVision.Primitives.DrawCircle.LocationX": "BonVision.Primitives.DrawCircle.yml",
+ "BonVision.Primitives.DrawCircle.LocationY": "BonVision.Primitives.DrawCircle.yml",
+ "BonVision.Primitives.DrawCircleArray": "BonVision.Primitives.DrawCircleArray.yml",
+ "BonVision.Primitives.DrawCircleArray.ColorA": "BonVision.Primitives.DrawCircleArray.yml",
+ "BonVision.Primitives.DrawCircleArray.ColorB": "BonVision.Primitives.DrawCircleArray.yml",
+ "BonVision.Primitives.DrawCircleArray.ColorG": "BonVision.Primitives.DrawCircleArray.yml",
+ "BonVision.Primitives.DrawCircleArray.ColorR": "BonVision.Primitives.DrawCircleArray.yml",
+ "BonVision.Primitives.DrawCircleArray.Diameter": "BonVision.Primitives.DrawCircleArray.yml",
+ "BonVision.Primitives.DrawCircleArray.Layer": "BonVision.Primitives.DrawCircleArray.yml",
+ "BonVision.Primitives.DrawCircleArray.LocationX": "BonVision.Primitives.DrawCircleArray.yml",
+ "BonVision.Primitives.DrawCircleArray.LocationY": "BonVision.Primitives.DrawCircleArray.yml",
+ "BonVision.Primitives.DrawCircleArray.PositionData": "BonVision.Primitives.DrawCircleArray.yml",
+ "BonVision.Primitives.DrawGratings": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawGratings.Angle": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawGratings.Aperture": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawGratings.Contrast": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawGratings.DutyCycle": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawGratings.ExtentX": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawGratings.ExtentY": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawGratings.Layer": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawGratings.LocationX": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawGratings.LocationY": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawGratings.Opacity": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawGratings.Phase": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawGratings.Radius": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawGratings.SpatialFrequency": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawGratings.SquareWave": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawGratings.TemporalFrequency": "BonVision.Primitives.DrawGratings.yml",
+ "BonVision.Primitives.DrawImage": "BonVision.Primitives.DrawImage.yml",
+ "BonVision.Primitives.DrawImage.Angle": "BonVision.Primitives.DrawImage.yml",
+ "BonVision.Primitives.DrawImage.ExtentX": "BonVision.Primitives.DrawImage.yml",
+ "BonVision.Primitives.DrawImage.ExtentY": "BonVision.Primitives.DrawImage.yml",
+ "BonVision.Primitives.DrawImage.Layer": "BonVision.Primitives.DrawImage.yml",
+ "BonVision.Primitives.DrawImage.LocationX": "BonVision.Primitives.DrawImage.yml",
+ "BonVision.Primitives.DrawImage.LocationY": "BonVision.Primitives.DrawImage.yml",
+ "BonVision.Primitives.DrawImage.ScaleX": "BonVision.Primitives.DrawImage.yml",
+ "BonVision.Primitives.DrawImage.ScaleY": "BonVision.Primitives.DrawImage.yml",
+ "BonVision.Primitives.DrawImage.ShiftX": "BonVision.Primitives.DrawImage.yml",
+ "BonVision.Primitives.DrawImage.ShiftY": "BonVision.Primitives.DrawImage.yml",
+ "BonVision.Primitives.DrawImage.TextureName": "BonVision.Primitives.DrawImage.yml",
+ "BonVision.Primitives.DrawModel": "BonVision.Primitives.DrawModel.yml",
+ "BonVision.Primitives.DrawModel.Ambient": "BonVision.Primitives.DrawModel.yml",
+ "BonVision.Primitives.DrawModel.Diffuse": "BonVision.Primitives.DrawModel.yml",
+ "BonVision.Primitives.DrawModel.MeshName": "BonVision.Primitives.DrawModel.yml",
+ "BonVision.Primitives.DrawModel.RotationX": "BonVision.Primitives.DrawModel.yml",
+ "BonVision.Primitives.DrawModel.RotationY": "BonVision.Primitives.DrawModel.yml",
+ "BonVision.Primitives.DrawModel.RotationZ": "BonVision.Primitives.DrawModel.yml",
+ "BonVision.Primitives.DrawModel.ScaleX": "BonVision.Primitives.DrawModel.yml",
+ "BonVision.Primitives.DrawModel.ScaleY": "BonVision.Primitives.DrawModel.yml",
+ "BonVision.Primitives.DrawModel.ScaleZ": "BonVision.Primitives.DrawModel.yml",
+ "BonVision.Primitives.DrawModel.Specular": "BonVision.Primitives.DrawModel.yml",
+ "BonVision.Primitives.DrawModel.SpecularExponent": "BonVision.Primitives.DrawModel.yml",
+ "BonVision.Primitives.DrawModel.TranslationX": "BonVision.Primitives.DrawModel.yml",
+ "BonVision.Primitives.DrawModel.TranslationY": "BonVision.Primitives.DrawModel.yml",
+ "BonVision.Primitives.DrawModel.TranslationZ": "BonVision.Primitives.DrawModel.yml",
+ "BonVision.Primitives.DrawModelArray": "BonVision.Primitives.DrawModelArray.yml",
+ "BonVision.Primitives.DrawModelArray.Ambient": "BonVision.Primitives.DrawModelArray.yml",
+ "BonVision.Primitives.DrawModelArray.Diffuse": "BonVision.Primitives.DrawModelArray.yml",
+ "BonVision.Primitives.DrawModelArray.MeshName": "BonVision.Primitives.DrawModelArray.yml",
+ "BonVision.Primitives.DrawModelArray.RotationX": "BonVision.Primitives.DrawModelArray.yml",
+ "BonVision.Primitives.DrawModelArray.RotationY": "BonVision.Primitives.DrawModelArray.yml",
+ "BonVision.Primitives.DrawModelArray.RotationZ": "BonVision.Primitives.DrawModelArray.yml",
+ "BonVision.Primitives.DrawModelArray.ScaleX": "BonVision.Primitives.DrawModelArray.yml",
+ "BonVision.Primitives.DrawModelArray.ScaleY": "BonVision.Primitives.DrawModelArray.yml",
+ "BonVision.Primitives.DrawModelArray.ScaleZ": "BonVision.Primitives.DrawModelArray.yml",
+ "BonVision.Primitives.DrawModelArray.Specular": "BonVision.Primitives.DrawModelArray.yml",
+ "BonVision.Primitives.DrawModelArray.SpecularExponent": "BonVision.Primitives.DrawModelArray.yml",
+ "BonVision.Primitives.DrawModelArray.TranslationX": "BonVision.Primitives.DrawModelArray.yml",
+ "BonVision.Primitives.DrawModelArray.TranslationY": "BonVision.Primitives.DrawModelArray.yml",
+ "BonVision.Primitives.DrawModelArray.TranslationZ": "BonVision.Primitives.DrawModelArray.yml",
+ "BonVision.Primitives.DrawQuad": "BonVision.Primitives.DrawQuad.yml",
+ "BonVision.Primitives.DrawQuad.Angle": "BonVision.Primitives.DrawQuad.yml",
+ "BonVision.Primitives.DrawQuad.ColorA": "BonVision.Primitives.DrawQuad.yml",
+ "BonVision.Primitives.DrawQuad.ColorB": "BonVision.Primitives.DrawQuad.yml",
+ "BonVision.Primitives.DrawQuad.ColorG": "BonVision.Primitives.DrawQuad.yml",
+ "BonVision.Primitives.DrawQuad.ColorR": "BonVision.Primitives.DrawQuad.yml",
+ "BonVision.Primitives.DrawQuad.ExtentX": "BonVision.Primitives.DrawQuad.yml",
+ "BonVision.Primitives.DrawQuad.ExtentY": "BonVision.Primitives.DrawQuad.yml",
+ "BonVision.Primitives.DrawQuad.Layer": "BonVision.Primitives.DrawQuad.yml",
+ "BonVision.Primitives.DrawQuad.LocationX": "BonVision.Primitives.DrawQuad.yml",
+ "BonVision.Primitives.DrawQuad.LocationY": "BonVision.Primitives.DrawQuad.yml",
+ "BonVision.Primitives.DrawSceneModel": "BonVision.Primitives.DrawSceneModel.yml",
+ "BonVision.Primitives.DrawSceneModel.RotationX": "BonVision.Primitives.DrawSceneModel.yml",
+ "BonVision.Primitives.DrawSceneModel.RotationY": "BonVision.Primitives.DrawSceneModel.yml",
+ "BonVision.Primitives.DrawSceneModel.RotationZ": "BonVision.Primitives.DrawSceneModel.yml",
+ "BonVision.Primitives.DrawSceneModel.ScaleX": "BonVision.Primitives.DrawSceneModel.yml",
+ "BonVision.Primitives.DrawSceneModel.ScaleY": "BonVision.Primitives.DrawSceneModel.yml",
+ "BonVision.Primitives.DrawSceneModel.ScaleZ": "BonVision.Primitives.DrawSceneModel.yml",
+ "BonVision.Primitives.DrawSceneModel.SceneName": "BonVision.Primitives.DrawSceneModel.yml",
+ "BonVision.Primitives.DrawSceneModel.TranslationX": "BonVision.Primitives.DrawSceneModel.yml",
+ "BonVision.Primitives.DrawSceneModel.TranslationY": "BonVision.Primitives.DrawSceneModel.yml",
+ "BonVision.Primitives.DrawSceneModel.TranslationZ": "BonVision.Primitives.DrawSceneModel.yml",
+ "BonVision.Primitives.DrawText": "BonVision.Primitives.DrawText.yml",
+ "BonVision.Primitives.DrawText.Alignment": "BonVision.Primitives.DrawText.yml",
+ "BonVision.Primitives.DrawText.Angle": "BonVision.Primitives.DrawText.yml",
+ "BonVision.Primitives.DrawText.Color": "BonVision.Primitives.DrawText.yml",
+ "BonVision.Primitives.DrawText.Destination": "BonVision.Primitives.DrawText.yml",
+ "BonVision.Primitives.DrawText.ExtentX": "BonVision.Primitives.DrawText.yml",
+ "BonVision.Primitives.DrawText.ExtentY": "BonVision.Primitives.DrawText.yml",
+ "BonVision.Primitives.DrawText.Font": "BonVision.Primitives.DrawText.yml",
+ "BonVision.Primitives.DrawText.Layer": "BonVision.Primitives.DrawText.yml",
+ "BonVision.Primitives.DrawText.LineAlignment": "BonVision.Primitives.DrawText.yml",
+ "BonVision.Primitives.DrawText.LocationX": "BonVision.Primitives.DrawText.yml",
+ "BonVision.Primitives.DrawText.LocationY": "BonVision.Primitives.DrawText.yml",
+ "BonVision.Primitives.DrawText.Size": "BonVision.Primitives.DrawText.yml",
+ "BonVision.Primitives.DrawText.Text": "BonVision.Primitives.DrawText.yml",
+ "BonVision.Primitives.DrawText.TextRenderingHint": "BonVision.Primitives.DrawText.yml",
+ "BonVision.Primitives.DrawTexturedModel": "BonVision.Primitives.DrawTexturedModel.yml",
+ "BonVision.Primitives.DrawTexturedModel.Ambient": "BonVision.Primitives.DrawTexturedModel.yml",
+ "BonVision.Primitives.DrawTexturedModel.Diffuse": "BonVision.Primitives.DrawTexturedModel.yml",
+ "BonVision.Primitives.DrawTexturedModel.MeshName": "BonVision.Primitives.DrawTexturedModel.yml",
+ "BonVision.Primitives.DrawTexturedModel.RotationX": "BonVision.Primitives.DrawTexturedModel.yml",
+ "BonVision.Primitives.DrawTexturedModel.RotationY": "BonVision.Primitives.DrawTexturedModel.yml",
+ "BonVision.Primitives.DrawTexturedModel.RotationZ": "BonVision.Primitives.DrawTexturedModel.yml",
+ "BonVision.Primitives.DrawTexturedModel.ScaleX": "BonVision.Primitives.DrawTexturedModel.yml",
+ "BonVision.Primitives.DrawTexturedModel.ScaleY": "BonVision.Primitives.DrawTexturedModel.yml",
+ "BonVision.Primitives.DrawTexturedModel.ScaleZ": "BonVision.Primitives.DrawTexturedModel.yml",
+ "BonVision.Primitives.DrawTexturedModel.Specular": "BonVision.Primitives.DrawTexturedModel.yml",
+ "BonVision.Primitives.DrawTexturedModel.SpecularExponent": "BonVision.Primitives.DrawTexturedModel.yml",
+ "BonVision.Primitives.DrawTexturedModel.TranslationX": "BonVision.Primitives.DrawTexturedModel.yml",
+ "BonVision.Primitives.DrawTexturedModel.TranslationY": "BonVision.Primitives.DrawTexturedModel.yml",
+ "BonVision.Primitives.DrawTexturedModel.TranslationZ": "BonVision.Primitives.DrawTexturedModel.yml",
+ "BonVision.Primitives.DrawTexturedModelArray": "BonVision.Primitives.DrawTexturedModelArray.yml",
+ "BonVision.Primitives.DrawTexturedModelArray.Ambient": "BonVision.Primitives.DrawTexturedModelArray.yml",
+ "BonVision.Primitives.DrawTexturedModelArray.Diffuse": "BonVision.Primitives.DrawTexturedModelArray.yml",
+ "BonVision.Primitives.DrawTexturedModelArray.MeshName": "BonVision.Primitives.DrawTexturedModelArray.yml",
+ "BonVision.Primitives.DrawTexturedModelArray.RotationX": "BonVision.Primitives.DrawTexturedModelArray.yml",
+ "BonVision.Primitives.DrawTexturedModelArray.RotationY": "BonVision.Primitives.DrawTexturedModelArray.yml",
+ "BonVision.Primitives.DrawTexturedModelArray.RotationZ": "BonVision.Primitives.DrawTexturedModelArray.yml",
+ "BonVision.Primitives.DrawTexturedModelArray.ScaleX": "BonVision.Primitives.DrawTexturedModelArray.yml",
+ "BonVision.Primitives.DrawTexturedModelArray.ScaleY": "BonVision.Primitives.DrawTexturedModelArray.yml",
+ "BonVision.Primitives.DrawTexturedModelArray.ScaleZ": "BonVision.Primitives.DrawTexturedModelArray.yml",
+ "BonVision.Primitives.DrawTexturedModelArray.Specular": "BonVision.Primitives.DrawTexturedModelArray.yml",
+ "BonVision.Primitives.DrawTexturedModelArray.SpecularExponent": "BonVision.Primitives.DrawTexturedModelArray.yml",
+ "BonVision.Primitives.DrawTexturedModelArray.TranslationX": "BonVision.Primitives.DrawTexturedModelArray.yml",
+ "BonVision.Primitives.DrawTexturedModelArray.TranslationY": "BonVision.Primitives.DrawTexturedModelArray.yml",
+ "BonVision.Primitives.DrawTexturedModelArray.TranslationZ": "BonVision.Primitives.DrawTexturedModelArray.yml",
+ "BonVision.Primitives.DrawVideo": "BonVision.Primitives.DrawVideo.yml",
+ "BonVision.Primitives.DrawVideo.Angle": "BonVision.Primitives.DrawVideo.yml",
+ "BonVision.Primitives.DrawVideo.ExtentX": "BonVision.Primitives.DrawVideo.yml",
+ "BonVision.Primitives.DrawVideo.ExtentY": "BonVision.Primitives.DrawVideo.yml",
+ "BonVision.Primitives.DrawVideo.Layer": "BonVision.Primitives.DrawVideo.yml",
+ "BonVision.Primitives.DrawVideo.LocationX": "BonVision.Primitives.DrawVideo.yml",
+ "BonVision.Primitives.DrawVideo.LocationY": "BonVision.Primitives.DrawVideo.yml",
+ "BonVision.Primitives.DrawVideo.Loop": "BonVision.Primitives.DrawVideo.yml",
+ "BonVision.Primitives.DrawVideo.PlaybackRate": "BonVision.Primitives.DrawVideo.yml",
+ "BonVision.Primitives.DrawVideo.ScaleX": "BonVision.Primitives.DrawVideo.yml",
+ "BonVision.Primitives.DrawVideo.ScaleY": "BonVision.Primitives.DrawVideo.yml",
+ "BonVision.Primitives.DrawVideo.ShiftX": "BonVision.Primitives.DrawVideo.yml",
+ "BonVision.Primitives.DrawVideo.ShiftY": "BonVision.Primitives.DrawVideo.yml",
+ "BonVision.Primitives.DrawVideo.TextureName": "BonVision.Primitives.DrawVideo.yml",
+ "BonVision.Primitives.ParameterRange": "BonVision.Primitives.ParameterRange.yml",
+ "BonVision.Primitives.ParameterRange.Count": "BonVision.Primitives.ParameterRange.yml",
+ "BonVision.Primitives.ParameterRange.RangeMax": "BonVision.Primitives.ParameterRange.yml",
+ "BonVision.Primitives.ParameterRange.RangeMin": "BonVision.Primitives.ParameterRange.yml",
+ "BonVision.Primitives.RangeAnimation": "BonVision.Primitives.RangeAnimation.yml",
+ "BonVision.Primitives.RangeAnimation.Duration": "BonVision.Primitives.RangeAnimation.yml",
+ "BonVision.Primitives.RangeAnimation.RangeBegin": "BonVision.Primitives.RangeAnimation.yml",
+ "BonVision.Primitives.RangeAnimation.RangeEnd": "BonVision.Primitives.RangeAnimation.yml",
+ "BonVision.RotationProperty": "BonVision.RotationProperty.yml",
+ "BonVision.RotationProperty.Process": "BonVision.RotationProperty.yml",
+ "BonVision.RotationProperty.Process``1(System.IObservable{``0})": "BonVision.RotationProperty.yml",
+ "BonVision.RotationProperty.Value": "BonVision.RotationProperty.yml",
+ "BonVision.RotationProperty.ValueXml": "BonVision.RotationProperty.yml"
+}
\ No newline at end of file
diff --git a/docs/api/BonVision.AngleProperty.yml b/docs/api/BonVision.AngleProperty.yml
new file mode 100644
index 0000000..4d090cb
--- /dev/null
+++ b/docs/api/BonVision.AngleProperty.yml
@@ -0,0 +1,578 @@
+### YamlMime:ManagedReference
+items:
+- uid: BonVision.AngleProperty
+ commentId: T:BonVision.AngleProperty
+ id: AngleProperty
+ parent: BonVision
+ children:
+ - BonVision.AngleProperty.Process
+ - BonVision.AngleProperty.Process``1(System.IObservable{``0})
+ - BonVision.AngleProperty.Value
+ - BonVision.AngleProperty.ValueXml
+ langs:
+ - csharp
+ - vb
+ name: AngleProperty
+ nameWithType: AngleProperty
+ fullName: BonVision.AngleProperty
+ type: Class
+ source:
+ remote:
+ path: src/BonVision/AngleProperty.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: AngleProperty
+ path: ../src/BonVision/AngleProperty.cs
+ startLine: 9
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: >-
+ [Combinator]
+
+ [WorkflowElementCategory(ElementCategory.Source)]
+
+ public class AngleProperty
+ content.vb: >-
+
+
+
+
+ Public Class AngleProperty
+ inheritance:
+ - System.Object
+ inheritedMembers:
+ - System.Object.ToString
+ - System.Object.Equals(System.Object)
+ - System.Object.Equals(System.Object,System.Object)
+ - System.Object.ReferenceEquals(System.Object,System.Object)
+ - System.Object.GetHashCode
+ - System.Object.GetType
+ - System.Object.MemberwiseClone
+ attributes:
+ - type: Bonsai.CombinatorAttribute
+ ctor: Bonsai.CombinatorAttribute.#ctor
+ arguments: []
+ - type: Bonsai.WorkflowElementCategoryAttribute
+ ctor: Bonsai.WorkflowElementCategoryAttribute.#ctor(Bonsai.ElementCategory)
+ arguments:
+ - type: Bonsai.ElementCategory
+ value: 0
+- uid: BonVision.AngleProperty.Value
+ commentId: P:BonVision.AngleProperty.Value
+ id: Value
+ parent: BonVision.AngleProperty
+ langs:
+ - csharp
+ - vb
+ name: Value
+ nameWithType: AngleProperty.Value
+ fullName: BonVision.AngleProperty.Value
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/AngleProperty.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Value
+ path: ../src/BonVision/AngleProperty.cs
+ startLine: 18
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: >-
+ [Range(-3.141592653589793, 3.141592653589793)]
+
+ [TypeConverter(typeof(DegreeConverter))]
+
+ public float Value { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: >-
+
+
+
+
+ Public Property Value As Single
+ overload: BonVision.AngleProperty.Value*
+ attributes:
+ - type: Bonsai.RangeAttribute
+ ctor: Bonsai.RangeAttribute.#ctor(System.Double,System.Double)
+ arguments:
+ - type: System.Double
+ value: -3.141592653589793
+ - type: System.Double
+ value: 3.141592653589793
+- uid: BonVision.AngleProperty.ValueXml
+ commentId: P:BonVision.AngleProperty.ValueXml
+ id: ValueXml
+ parent: BonVision.AngleProperty
+ langs:
+ - csharp
+ - vb
+ name: ValueXml
+ nameWithType: AngleProperty.ValueXml
+ fullName: BonVision.AngleProperty.ValueXml
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/AngleProperty.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: ValueXml
+ path: ../src/BonVision/AngleProperty.cs
+ startLine: 33
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: >-
+ [Browsable(false)]
+
+ public float ValueXml { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: >-
+
+
+ Public Property ValueXml As Single
+ overload: BonVision.AngleProperty.ValueXml*
+ attributes:
+ - type: System.ComponentModel.BrowsableAttribute
+ ctor: System.ComponentModel.BrowsableAttribute.#ctor(System.Boolean)
+ arguments:
+ - type: System.Boolean
+ value: false
+- uid: BonVision.AngleProperty.Process
+ commentId: M:BonVision.AngleProperty.Process
+ id: Process
+ parent: BonVision.AngleProperty
+ langs:
+ - csharp
+ - vb
+ name: Process()
+ nameWithType: AngleProperty.Process()
+ fullName: BonVision.AngleProperty.Process()
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/AngleProperty.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Process
+ path: ../src/BonVision/AngleProperty.cs
+ startLine: 46
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public IObservable Process()
+ return:
+ type: System.IObservable{System.Single}
+ content.vb: Public Function Process() As IObservable(Of Single)
+ overload: BonVision.AngleProperty.Process*
+- uid: BonVision.AngleProperty.Process``1(System.IObservable{``0})
+ commentId: M:BonVision.AngleProperty.Process``1(System.IObservable{``0})
+ id: Process``1(System.IObservable{``0})
+ parent: BonVision.AngleProperty
+ langs:
+ - csharp
+ - vb
+ name: Process(IObservable)
+ nameWithType: AngleProperty.Process(IObservable)
+ fullName: BonVision.AngleProperty.Process(System.IObservable)
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/AngleProperty.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Process
+ path: ../src/BonVision/AngleProperty.cs
+ startLine: 55
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public IObservable Process(IObservable source)
+ parameters:
+ - id: source
+ type: System.IObservable{{TSource}}
+ typeParameters:
+ - id: TSource
+ return:
+ type: System.IObservable{System.Single}
+ content.vb: Public Function Process(Of TSource)(source As IObservable(Of TSource)) As IObservable(Of Single)
+ overload: BonVision.AngleProperty.Process*
+ nameWithType.vb: AngleProperty.Process(Of TSource)(IObservable(Of TSource))
+ fullName.vb: BonVision.AngleProperty.Process(Of TSource)(System.IObservable(Of TSource))
+ name.vb: Process(Of TSource)(IObservable(Of TSource))
+references:
+- uid: BonVision
+ commentId: N:BonVision
+ href: BonVision.html
+ name: BonVision
+ nameWithType: BonVision
+ fullName: BonVision
+- uid: System.Object
+ commentId: T:System.Object
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ name: object
+ nameWithType: object
+ fullName: object
+ nameWithType.vb: Object
+ fullName.vb: Object
+ name.vb: Object
+- uid: System.Object.ToString
+ commentId: M:System.Object.ToString
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ name: ToString()
+ nameWithType: object.ToString()
+ fullName: object.ToString()
+ nameWithType.vb: Object.ToString()
+ fullName.vb: Object.ToString()
+ spec.csharp:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+- uid: System.Object.Equals(System.Object)
+ commentId: M:System.Object.Equals(System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ name: Equals(object)
+ nameWithType: object.Equals(object)
+ fullName: object.Equals(object)
+ nameWithType.vb: Object.Equals(Object)
+ fullName.vb: Object.Equals(Object)
+ name.vb: Equals(Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.Equals(System.Object,System.Object)
+ commentId: M:System.Object.Equals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ name: Equals(object, object)
+ nameWithType: object.Equals(object, object)
+ fullName: object.Equals(object, object)
+ nameWithType.vb: Object.Equals(Object, Object)
+ fullName.vb: Object.Equals(Object, Object)
+ name.vb: Equals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ name: ReferenceEquals(object, object)
+ nameWithType: object.ReferenceEquals(object, object)
+ fullName: object.ReferenceEquals(object, object)
+ nameWithType.vb: Object.ReferenceEquals(Object, Object)
+ fullName.vb: Object.ReferenceEquals(Object, Object)
+ name.vb: ReferenceEquals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.GetHashCode
+ commentId: M:System.Object.GetHashCode
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ name: GetHashCode()
+ nameWithType: object.GetHashCode()
+ fullName: object.GetHashCode()
+ nameWithType.vb: Object.GetHashCode()
+ fullName.vb: Object.GetHashCode()
+ spec.csharp:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+- uid: System.Object.GetType
+ commentId: M:System.Object.GetType
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ name: GetType()
+ nameWithType: object.GetType()
+ fullName: object.GetType()
+ nameWithType.vb: Object.GetType()
+ fullName.vb: Object.GetType()
+ spec.csharp:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+- uid: System.Object.MemberwiseClone
+ commentId: M:System.Object.MemberwiseClone
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ name: MemberwiseClone()
+ nameWithType: object.MemberwiseClone()
+ fullName: object.MemberwiseClone()
+ nameWithType.vb: Object.MemberwiseClone()
+ fullName.vb: Object.MemberwiseClone()
+ spec.csharp:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+- uid: System
+ commentId: N:System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system
+ name: System
+ nameWithType: System
+ fullName: System
+- uid: BonVision.AngleProperty.Value*
+ commentId: Overload:BonVision.AngleProperty.Value
+ href: BonVision.AngleProperty.html#BonVision_AngleProperty_Value
+ name: Value
+ nameWithType: AngleProperty.Value
+ fullName: BonVision.AngleProperty.Value
+- uid: System.Single
+ commentId: T:System.Single
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.single
+ name: float
+ nameWithType: float
+ fullName: float
+ nameWithType.vb: Single
+ fullName.vb: Single
+ name.vb: Single
+- uid: BonVision.AngleProperty.ValueXml*
+ commentId: Overload:BonVision.AngleProperty.ValueXml
+ href: BonVision.AngleProperty.html#BonVision_AngleProperty_ValueXml
+ name: ValueXml
+ nameWithType: AngleProperty.ValueXml
+ fullName: BonVision.AngleProperty.ValueXml
+- uid: BonVision.AngleProperty.Process*
+ commentId: Overload:BonVision.AngleProperty.Process
+ href: BonVision.AngleProperty.html#BonVision_AngleProperty_Process
+ name: Process
+ nameWithType: AngleProperty.Process
+ fullName: BonVision.AngleProperty.Process
+- uid: System.IObservable{System.Single}
+ commentId: T:System.IObservable{System.Single}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of Single)
+ fullName.vb: System.IObservable(Of Single)
+ name.vb: IObservable(Of Single)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - uid: System.Single
+ name: float
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.single
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: System.Single
+ name: Single
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.single
+ - name: )
+- uid: System.IObservable`1
+ commentId: T:System.IObservable`1
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of T)
+ fullName.vb: System.IObservable(Of T)
+ name.vb: IObservable(Of T)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - name: T
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: T
+ - name: )
+- uid: System.IObservable{{TSource}}
+ commentId: T:System.IObservable{``0}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of TSource)
+ fullName.vb: System.IObservable(Of TSource)
+ name.vb: IObservable(Of TSource)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - name: TSource
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: TSource
+ - name: )
diff --git a/docs/api/BonVision.Collections.CreateGratingTrial.yml b/docs/api/BonVision.Collections.CreateGratingTrial.yml
new file mode 100644
index 0000000..ddac41e
--- /dev/null
+++ b/docs/api/BonVision.Collections.CreateGratingTrial.yml
@@ -0,0 +1,1187 @@
+### YamlMime:ManagedReference
+items:
+- uid: BonVision.Collections.CreateGratingTrial
+ commentId: T:BonVision.Collections.CreateGratingTrial
+ id: CreateGratingTrial
+ parent: BonVision.Collections
+ children:
+ - BonVision.Collections.CreateGratingTrial.#ctor
+ - BonVision.Collections.CreateGratingTrial.Contrast
+ - BonVision.Collections.CreateGratingTrial.Delay
+ - BonVision.Collections.CreateGratingTrial.Diameter
+ - BonVision.Collections.CreateGratingTrial.Duration
+ - BonVision.Collections.CreateGratingTrial.Orientation
+ - BonVision.Collections.CreateGratingTrial.OrientationXml
+ - BonVision.Collections.CreateGratingTrial.Process(System.IObservable{BonVision.Collections.GratingParameters})
+ - BonVision.Collections.CreateGratingTrial.Process``1(System.IObservable{``0})
+ - BonVision.Collections.CreateGratingTrial.SpatialFrequency
+ - BonVision.Collections.CreateGratingTrial.TemporalFrequency
+ - BonVision.Collections.CreateGratingTrial.X
+ - BonVision.Collections.CreateGratingTrial.Y
+ langs:
+ - csharp
+ - vb
+ name: CreateGratingTrial
+ nameWithType: CreateGratingTrial
+ fullName: BonVision.Collections.CreateGratingTrial
+ type: Class
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: CreateGratingTrial
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 38
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: 'public class CreateGratingTrial : Transform'
+ content.vb: Public Class CreateGratingTrial Inherits Transform(Of GratingParameters, GratingTrial)
+ inheritance:
+ - System.Object
+ - Bonsai.Combinator{BonVision.Collections.GratingParameters,BonVision.Collections.GratingTrial}
+ - Bonsai.Transform{BonVision.Collections.GratingParameters,BonVision.Collections.GratingTrial}
+ inheritedMembers:
+ - Bonsai.Combinator{BonVision.Collections.GratingParameters,BonVision.Collections.GratingTrial}.Process(System.IObservable{BonVision.Collections.GratingParameters})
+ - System.Object.ToString
+ - System.Object.Equals(System.Object)
+ - System.Object.Equals(System.Object,System.Object)
+ - System.Object.ReferenceEquals(System.Object,System.Object)
+ - System.Object.GetHashCode
+ - System.Object.GetType
+ - System.Object.MemberwiseClone
+- uid: BonVision.Collections.CreateGratingTrial.#ctor
+ commentId: M:BonVision.Collections.CreateGratingTrial.#ctor
+ id: '#ctor'
+ parent: BonVision.Collections.CreateGratingTrial
+ langs:
+ - csharp
+ - vb
+ name: CreateGratingTrial()
+ nameWithType: CreateGratingTrial.CreateGratingTrial()
+ fullName: BonVision.Collections.CreateGratingTrial.CreateGratingTrial()
+ type: Constructor
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: .ctor
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 41
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public CreateGratingTrial()
+ content.vb: Public Sub New()
+ overload: BonVision.Collections.CreateGratingTrial.#ctor*
+ nameWithType.vb: CreateGratingTrial.New()
+ fullName.vb: BonVision.Collections.CreateGratingTrial.New()
+ name.vb: New()
+- uid: BonVision.Collections.CreateGratingTrial.Delay
+ commentId: P:BonVision.Collections.CreateGratingTrial.Delay
+ id: Delay
+ parent: BonVision.Collections.CreateGratingTrial
+ langs:
+ - csharp
+ - vb
+ name: Delay
+ nameWithType: CreateGratingTrial.Delay
+ fullName: BonVision.Collections.CreateGratingTrial.Delay
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Delay
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 49
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float Delay { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Delay As Single
+ overload: BonVision.Collections.CreateGratingTrial.Delay*
+- uid: BonVision.Collections.CreateGratingTrial.Duration
+ commentId: P:BonVision.Collections.CreateGratingTrial.Duration
+ id: Duration
+ parent: BonVision.Collections.CreateGratingTrial
+ langs:
+ - csharp
+ - vb
+ name: Duration
+ nameWithType: CreateGratingTrial.Duration
+ fullName: BonVision.Collections.CreateGratingTrial.Duration
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Duration
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 52
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float Duration { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Duration As Single
+ overload: BonVision.Collections.CreateGratingTrial.Duration*
+- uid: BonVision.Collections.CreateGratingTrial.Diameter
+ commentId: P:BonVision.Collections.CreateGratingTrial.Diameter
+ id: Diameter
+ parent: BonVision.Collections.CreateGratingTrial
+ langs:
+ - csharp
+ - vb
+ name: Diameter
+ nameWithType: CreateGratingTrial.Diameter
+ fullName: BonVision.Collections.CreateGratingTrial.Diameter
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Diameter
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 55
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float Diameter { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Diameter As Single
+ overload: BonVision.Collections.CreateGratingTrial.Diameter*
+- uid: BonVision.Collections.CreateGratingTrial.X
+ commentId: P:BonVision.Collections.CreateGratingTrial.X
+ id: X
+ parent: BonVision.Collections.CreateGratingTrial
+ langs:
+ - csharp
+ - vb
+ name: X
+ nameWithType: CreateGratingTrial.X
+ fullName: BonVision.Collections.CreateGratingTrial.X
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: X
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 58
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float X { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property X As Single
+ overload: BonVision.Collections.CreateGratingTrial.X*
+- uid: BonVision.Collections.CreateGratingTrial.Y
+ commentId: P:BonVision.Collections.CreateGratingTrial.Y
+ id: Y
+ parent: BonVision.Collections.CreateGratingTrial
+ langs:
+ - csharp
+ - vb
+ name: Y
+ nameWithType: CreateGratingTrial.Y
+ fullName: BonVision.Collections.CreateGratingTrial.Y
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Y
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 61
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float Y { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Y As Single
+ overload: BonVision.Collections.CreateGratingTrial.Y*
+- uid: BonVision.Collections.CreateGratingTrial.Contrast
+ commentId: P:BonVision.Collections.CreateGratingTrial.Contrast
+ id: Contrast
+ parent: BonVision.Collections.CreateGratingTrial
+ langs:
+ - csharp
+ - vb
+ name: Contrast
+ nameWithType: CreateGratingTrial.Contrast
+ fullName: BonVision.Collections.CreateGratingTrial.Contrast
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Contrast
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 64
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float Contrast { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Contrast As Single
+ overload: BonVision.Collections.CreateGratingTrial.Contrast*
+- uid: BonVision.Collections.CreateGratingTrial.SpatialFrequency
+ commentId: P:BonVision.Collections.CreateGratingTrial.SpatialFrequency
+ id: SpatialFrequency
+ parent: BonVision.Collections.CreateGratingTrial
+ langs:
+ - csharp
+ - vb
+ name: SpatialFrequency
+ nameWithType: CreateGratingTrial.SpatialFrequency
+ fullName: BonVision.Collections.CreateGratingTrial.SpatialFrequency
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: SpatialFrequency
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 67
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float SpatialFrequency { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property SpatialFrequency As Single
+ overload: BonVision.Collections.CreateGratingTrial.SpatialFrequency*
+- uid: BonVision.Collections.CreateGratingTrial.TemporalFrequency
+ commentId: P:BonVision.Collections.CreateGratingTrial.TemporalFrequency
+ id: TemporalFrequency
+ parent: BonVision.Collections.CreateGratingTrial
+ langs:
+ - csharp
+ - vb
+ name: TemporalFrequency
+ nameWithType: CreateGratingTrial.TemporalFrequency
+ fullName: BonVision.Collections.CreateGratingTrial.TemporalFrequency
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: TemporalFrequency
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 70
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float TemporalFrequency { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property TemporalFrequency As Single
+ overload: BonVision.Collections.CreateGratingTrial.TemporalFrequency*
+- uid: BonVision.Collections.CreateGratingTrial.Orientation
+ commentId: P:BonVision.Collections.CreateGratingTrial.Orientation
+ id: Orientation
+ parent: BonVision.Collections.CreateGratingTrial
+ langs:
+ - csharp
+ - vb
+ name: Orientation
+ nameWithType: CreateGratingTrial.Orientation
+ fullName: BonVision.Collections.CreateGratingTrial.Orientation
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Orientation
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 73
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: >-
+ [Range(-3.141592653589793, 3.141592653589793)]
+
+ [TypeConverter(typeof(DegreeConverter))]
+
+ public float Orientation { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: >-
+
+
+
+
+ Public Property Orientation As Single
+ overload: BonVision.Collections.CreateGratingTrial.Orientation*
+ attributes:
+ - type: Bonsai.RangeAttribute
+ ctor: Bonsai.RangeAttribute.#ctor(System.Double,System.Double)
+ arguments:
+ - type: System.Double
+ value: -3.141592653589793
+ - type: System.Double
+ value: 3.141592653589793
+- uid: BonVision.Collections.CreateGratingTrial.OrientationXml
+ commentId: P:BonVision.Collections.CreateGratingTrial.OrientationXml
+ id: OrientationXml
+ parent: BonVision.Collections.CreateGratingTrial
+ langs:
+ - csharp
+ - vb
+ name: OrientationXml
+ nameWithType: CreateGratingTrial.OrientationXml
+ fullName: BonVision.Collections.CreateGratingTrial.OrientationXml
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: OrientationXml
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 80
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: >-
+ [Browsable(false)]
+
+ public float OrientationXml { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: >-
+
+
+ Public Property OrientationXml As Single
+ overload: BonVision.Collections.CreateGratingTrial.OrientationXml*
+ attributes:
+ - type: System.ComponentModel.BrowsableAttribute
+ ctor: System.ComponentModel.BrowsableAttribute.#ctor(System.Boolean)
+ arguments:
+ - type: System.Boolean
+ value: false
+- uid: BonVision.Collections.CreateGratingTrial.Process``1(System.IObservable{``0})
+ commentId: M:BonVision.Collections.CreateGratingTrial.Process``1(System.IObservable{``0})
+ id: Process``1(System.IObservable{``0})
+ parent: BonVision.Collections.CreateGratingTrial
+ langs:
+ - csharp
+ - vb
+ name: Process(IObservable)
+ nameWithType: CreateGratingTrial.Process(IObservable)
+ fullName: BonVision.Collections.CreateGratingTrial.Process(System.IObservable)
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Process
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 88
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public IObservable Process(IObservable source)
+ parameters:
+ - id: source
+ type: System.IObservable{{TSource}}
+ typeParameters:
+ - id: TSource
+ return:
+ type: System.IObservable{BonVision.Collections.GratingTrial}
+ content.vb: Public Function Process(Of TSource)(source As IObservable(Of TSource)) As IObservable(Of GratingTrial)
+ overload: BonVision.Collections.CreateGratingTrial.Process*
+ nameWithType.vb: CreateGratingTrial.Process(Of TSource)(IObservable(Of TSource))
+ fullName.vb: BonVision.Collections.CreateGratingTrial.Process(Of TSource)(System.IObservable(Of TSource))
+ name.vb: Process(Of TSource)(IObservable(Of TSource))
+- uid: BonVision.Collections.CreateGratingTrial.Process(System.IObservable{BonVision.Collections.GratingParameters})
+ commentId: M:BonVision.Collections.CreateGratingTrial.Process(System.IObservable{BonVision.Collections.GratingParameters})
+ id: Process(System.IObservable{BonVision.Collections.GratingParameters})
+ parent: BonVision.Collections.CreateGratingTrial
+ langs:
+ - csharp
+ - vb
+ name: Process(IObservable)
+ nameWithType: CreateGratingTrial.Process(IObservable)
+ fullName: BonVision.Collections.CreateGratingTrial.Process(System.IObservable)
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Process
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 105
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ summary: >-
+ Processes an observable sequence into a new sequence of the specified
+
+ element type.
+ example: []
+ syntax:
+ content: public override IObservable Process(IObservable source)
+ parameters:
+ - id: source
+ type: System.IObservable{BonVision.Collections.GratingParameters}
+ description: The source sequence to process.
+ return:
+ type: System.IObservable{BonVision.Collections.GratingTrial}
+ description: An observable sequence with elements of type .
+ content.vb: Public Overrides Function Process(source As IObservable(Of GratingParameters)) As IObservable(Of GratingTrial)
+ overridden: Bonsai.Combinator{BonVision.Collections.GratingParameters,BonVision.Collections.GratingTrial}.Process(System.IObservable{BonVision.Collections.GratingParameters})
+ overload: BonVision.Collections.CreateGratingTrial.Process*
+ nameWithType.vb: CreateGratingTrial.Process(IObservable(Of GratingParameters))
+ fullName.vb: BonVision.Collections.CreateGratingTrial.Process(System.IObservable(Of BonVision.Collections.GratingParameters))
+ name.vb: Process(IObservable(Of GratingParameters))
+references:
+- uid: BonVision.Collections
+ commentId: N:BonVision.Collections
+ href: BonVision.html
+ name: BonVision.Collections
+ nameWithType: BonVision.Collections
+ fullName: BonVision.Collections
+ spec.csharp:
+ - uid: BonVision
+ name: BonVision
+ href: BonVision.html
+ - name: .
+ - uid: BonVision.Collections
+ name: Collections
+ href: BonVision.Collections.html
+ spec.vb:
+ - uid: BonVision
+ name: BonVision
+ href: BonVision.html
+ - name: .
+ - uid: BonVision.Collections
+ name: Collections
+ href: BonVision.Collections.html
+- uid: System.Object
+ commentId: T:System.Object
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ name: object
+ nameWithType: object
+ fullName: object
+ nameWithType.vb: Object
+ fullName.vb: Object
+ name.vb: Object
+- uid: Bonsai.Combinator{BonVision.Collections.GratingParameters,BonVision.Collections.GratingTrial}
+ commentId: T:Bonsai.Combinator{BonVision.Collections.GratingParameters,BonVision.Collections.GratingTrial}
+ parent: Bonsai
+ definition: Bonsai.Combinator`2
+ href: BonVision.Collections.GratingParameters.html
+ name: Combinator
+ nameWithType: Combinator
+ fullName: Bonsai.Combinator
+ nameWithType.vb: Combinator(Of GratingParameters, GratingTrial)
+ fullName.vb: Bonsai.Combinator(Of BonVision.Collections.GratingParameters, BonVision.Collections.GratingTrial)
+ name.vb: Combinator(Of GratingParameters, GratingTrial)
+ spec.csharp:
+ - uid: Bonsai.Combinator`2
+ name: Combinator
+ isExternal: true
+ - name: <
+ - uid: BonVision.Collections.GratingParameters
+ name: GratingParameters
+ href: BonVision.Collections.GratingParameters.html
+ - name: ','
+ - name: " "
+ - uid: BonVision.Collections.GratingTrial
+ name: GratingTrial
+ href: BonVision.Collections.GratingTrial.html
+ - name: '>'
+ spec.vb:
+ - uid: Bonsai.Combinator`2
+ name: Combinator
+ isExternal: true
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: BonVision.Collections.GratingParameters
+ name: GratingParameters
+ href: BonVision.Collections.GratingParameters.html
+ - name: ','
+ - name: " "
+ - uid: BonVision.Collections.GratingTrial
+ name: GratingTrial
+ href: BonVision.Collections.GratingTrial.html
+ - name: )
+- uid: Bonsai.Transform{BonVision.Collections.GratingParameters,BonVision.Collections.GratingTrial}
+ commentId: T:Bonsai.Transform{BonVision.Collections.GratingParameters,BonVision.Collections.GratingTrial}
+ parent: Bonsai
+ definition: Bonsai.Transform`2
+ href: BonVision.Collections.GratingParameters.html
+ name: Transform
+ nameWithType: Transform
+ fullName: Bonsai.Transform
+ nameWithType.vb: Transform(Of GratingParameters, GratingTrial)
+ fullName.vb: Bonsai.Transform(Of BonVision.Collections.GratingParameters, BonVision.Collections.GratingTrial)
+ name.vb: Transform(Of GratingParameters, GratingTrial)
+ spec.csharp:
+ - uid: Bonsai.Transform`2
+ name: Transform
+ isExternal: true
+ - name: <
+ - uid: BonVision.Collections.GratingParameters
+ name: GratingParameters
+ href: BonVision.Collections.GratingParameters.html
+ - name: ','
+ - name: " "
+ - uid: BonVision.Collections.GratingTrial
+ name: GratingTrial
+ href: BonVision.Collections.GratingTrial.html
+ - name: '>'
+ spec.vb:
+ - uid: Bonsai.Transform`2
+ name: Transform
+ isExternal: true
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: BonVision.Collections.GratingParameters
+ name: GratingParameters
+ href: BonVision.Collections.GratingParameters.html
+ - name: ','
+ - name: " "
+ - uid: BonVision.Collections.GratingTrial
+ name: GratingTrial
+ href: BonVision.Collections.GratingTrial.html
+ - name: )
+- uid: Bonsai.Combinator{BonVision.Collections.GratingParameters,BonVision.Collections.GratingTrial}.Process(System.IObservable{BonVision.Collections.GratingParameters})
+ commentId: M:Bonsai.Combinator{BonVision.Collections.GratingParameters,BonVision.Collections.GratingTrial}.Process(System.IObservable{BonVision.Collections.GratingParameters})
+ parent: Bonsai.Combinator{BonVision.Collections.GratingParameters,BonVision.Collections.GratingTrial}
+ definition: Bonsai.Combinator`2.Process(System.IObservable{`0})
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: Process(IObservable)
+ nameWithType: Combinator.Process(IObservable)
+ fullName: Bonsai.Combinator.Process(System.IObservable)
+ nameWithType.vb: Combinator(Of GratingParameters, GratingTrial).Process(IObservable(Of GratingParameters))
+ fullName.vb: Bonsai.Combinator(Of BonVision.Collections.GratingParameters, BonVision.Collections.GratingTrial).Process(System.IObservable(Of BonVision.Collections.GratingParameters))
+ name.vb: Process(IObservable(Of GratingParameters))
+ spec.csharp:
+ - uid: Bonsai.Combinator{BonVision.Collections.GratingParameters,BonVision.Collections.GratingTrial}.Process(System.IObservable{BonVision.Collections.GratingParameters})
+ name: Process
+ isExternal: true
+ - name: (
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - uid: BonVision.Collections.GratingParameters
+ name: GratingParameters
+ href: BonVision.Collections.GratingParameters.html
+ - name: '>'
+ - name: )
+ spec.vb:
+ - uid: Bonsai.Combinator{BonVision.Collections.GratingParameters,BonVision.Collections.GratingTrial}.Process(System.IObservable{BonVision.Collections.GratingParameters})
+ name: Process
+ isExternal: true
+ - name: (
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: BonVision.Collections.GratingParameters
+ name: GratingParameters
+ href: BonVision.Collections.GratingParameters.html
+ - name: )
+ - name: )
+- uid: System.Object.ToString
+ commentId: M:System.Object.ToString
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ name: ToString()
+ nameWithType: object.ToString()
+ fullName: object.ToString()
+ nameWithType.vb: Object.ToString()
+ fullName.vb: Object.ToString()
+ spec.csharp:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+- uid: System.Object.Equals(System.Object)
+ commentId: M:System.Object.Equals(System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ name: Equals(object)
+ nameWithType: object.Equals(object)
+ fullName: object.Equals(object)
+ nameWithType.vb: Object.Equals(Object)
+ fullName.vb: Object.Equals(Object)
+ name.vb: Equals(Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.Equals(System.Object,System.Object)
+ commentId: M:System.Object.Equals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ name: Equals(object, object)
+ nameWithType: object.Equals(object, object)
+ fullName: object.Equals(object, object)
+ nameWithType.vb: Object.Equals(Object, Object)
+ fullName.vb: Object.Equals(Object, Object)
+ name.vb: Equals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ name: ReferenceEquals(object, object)
+ nameWithType: object.ReferenceEquals(object, object)
+ fullName: object.ReferenceEquals(object, object)
+ nameWithType.vb: Object.ReferenceEquals(Object, Object)
+ fullName.vb: Object.ReferenceEquals(Object, Object)
+ name.vb: ReferenceEquals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.GetHashCode
+ commentId: M:System.Object.GetHashCode
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ name: GetHashCode()
+ nameWithType: object.GetHashCode()
+ fullName: object.GetHashCode()
+ nameWithType.vb: Object.GetHashCode()
+ fullName.vb: Object.GetHashCode()
+ spec.csharp:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+- uid: System.Object.GetType
+ commentId: M:System.Object.GetType
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ name: GetType()
+ nameWithType: object.GetType()
+ fullName: object.GetType()
+ nameWithType.vb: Object.GetType()
+ fullName.vb: Object.GetType()
+ spec.csharp:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+- uid: System.Object.MemberwiseClone
+ commentId: M:System.Object.MemberwiseClone
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ name: MemberwiseClone()
+ nameWithType: object.MemberwiseClone()
+ fullName: object.MemberwiseClone()
+ nameWithType.vb: Object.MemberwiseClone()
+ fullName.vb: Object.MemberwiseClone()
+ spec.csharp:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+- uid: System
+ commentId: N:System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system
+ name: System
+ nameWithType: System
+ fullName: System
+- uid: Bonsai.Combinator`2
+ commentId: T:Bonsai.Combinator`2
+ isExternal: true
+ name: Combinator
+ nameWithType: Combinator
+ fullName: Bonsai.Combinator
+ nameWithType.vb: Combinator(Of TSource, TResult)
+ fullName.vb: Bonsai.Combinator(Of TSource, TResult)
+ name.vb: Combinator(Of TSource, TResult)
+ spec.csharp:
+ - uid: Bonsai.Combinator`2
+ name: Combinator
+ isExternal: true
+ - name: <
+ - name: TSource
+ - name: ','
+ - name: " "
+ - name: TResult
+ - name: '>'
+ spec.vb:
+ - uid: Bonsai.Combinator`2
+ name: Combinator
+ isExternal: true
+ - name: (
+ - name: Of
+ - name: " "
+ - name: TSource
+ - name: ','
+ - name: " "
+ - name: TResult
+ - name: )
+- uid: Bonsai
+ commentId: N:Bonsai
+ isExternal: true
+ name: Bonsai
+ nameWithType: Bonsai
+ fullName: Bonsai
+- uid: Bonsai.Transform`2
+ commentId: T:Bonsai.Transform`2
+ isExternal: true
+ name: Transform
+ nameWithType: Transform
+ fullName: Bonsai.Transform
+ nameWithType.vb: Transform(Of TSource, TResult)
+ fullName.vb: Bonsai.Transform(Of TSource, TResult)
+ name.vb: Transform(Of TSource, TResult)
+ spec.csharp:
+ - uid: Bonsai.Transform`2
+ name: Transform
+ isExternal: true
+ - name: <
+ - name: TSource
+ - name: ','
+ - name: " "
+ - name: TResult
+ - name: '>'
+ spec.vb:
+ - uid: Bonsai.Transform`2
+ name: Transform
+ isExternal: true
+ - name: (
+ - name: Of
+ - name: " "
+ - name: TSource
+ - name: ','
+ - name: " "
+ - name: TResult
+ - name: )
+- uid: Bonsai.Combinator`2.Process(System.IObservable{`0})
+ commentId: M:Bonsai.Combinator`2.Process(System.IObservable{`0})
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: Process(IObservable)
+ nameWithType: Combinator.Process(IObservable)
+ fullName: Bonsai.Combinator.Process(System.IObservable)
+ nameWithType.vb: Combinator(Of TSource, TResult).Process(IObservable(Of TSource))
+ fullName.vb: Bonsai.Combinator(Of TSource, TResult).Process(System.IObservable(Of TSource))
+ name.vb: Process(IObservable(Of TSource))
+ spec.csharp:
+ - uid: Bonsai.Combinator`2.Process(System.IObservable{`0})
+ name: Process
+ isExternal: true
+ - name: (
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - name: TSource
+ - name: '>'
+ - name: )
+ spec.vb:
+ - uid: Bonsai.Combinator`2.Process(System.IObservable{`0})
+ name: Process
+ isExternal: true
+ - name: (
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: TSource
+ - name: )
+ - name: )
+- uid: BonVision.Collections.CreateGratingTrial.#ctor*
+ commentId: Overload:BonVision.Collections.CreateGratingTrial.#ctor
+ href: BonVision.Collections.CreateGratingTrial.html#BonVision_Collections_CreateGratingTrial__ctor
+ name: CreateGratingTrial
+ nameWithType: CreateGratingTrial.CreateGratingTrial
+ fullName: BonVision.Collections.CreateGratingTrial.CreateGratingTrial
+ nameWithType.vb: CreateGratingTrial.New
+ fullName.vb: BonVision.Collections.CreateGratingTrial.New
+ name.vb: New
+- uid: BonVision.Collections.CreateGratingTrial.Delay*
+ commentId: Overload:BonVision.Collections.CreateGratingTrial.Delay
+ href: BonVision.Collections.CreateGratingTrial.html#BonVision_Collections_CreateGratingTrial_Delay
+ name: Delay
+ nameWithType: CreateGratingTrial.Delay
+ fullName: BonVision.Collections.CreateGratingTrial.Delay
+- uid: System.Single
+ commentId: T:System.Single
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.single
+ name: float
+ nameWithType: float
+ fullName: float
+ nameWithType.vb: Single
+ fullName.vb: Single
+ name.vb: Single
+- uid: BonVision.Collections.CreateGratingTrial.Duration*
+ commentId: Overload:BonVision.Collections.CreateGratingTrial.Duration
+ href: BonVision.Collections.CreateGratingTrial.html#BonVision_Collections_CreateGratingTrial_Duration
+ name: Duration
+ nameWithType: CreateGratingTrial.Duration
+ fullName: BonVision.Collections.CreateGratingTrial.Duration
+- uid: BonVision.Collections.CreateGratingTrial.Diameter*
+ commentId: Overload:BonVision.Collections.CreateGratingTrial.Diameter
+ href: BonVision.Collections.CreateGratingTrial.html#BonVision_Collections_CreateGratingTrial_Diameter
+ name: Diameter
+ nameWithType: CreateGratingTrial.Diameter
+ fullName: BonVision.Collections.CreateGratingTrial.Diameter
+- uid: BonVision.Collections.CreateGratingTrial.X*
+ commentId: Overload:BonVision.Collections.CreateGratingTrial.X
+ href: BonVision.Collections.CreateGratingTrial.html#BonVision_Collections_CreateGratingTrial_X
+ name: X
+ nameWithType: CreateGratingTrial.X
+ fullName: BonVision.Collections.CreateGratingTrial.X
+- uid: BonVision.Collections.CreateGratingTrial.Y*
+ commentId: Overload:BonVision.Collections.CreateGratingTrial.Y
+ href: BonVision.Collections.CreateGratingTrial.html#BonVision_Collections_CreateGratingTrial_Y
+ name: Y
+ nameWithType: CreateGratingTrial.Y
+ fullName: BonVision.Collections.CreateGratingTrial.Y
+- uid: BonVision.Collections.CreateGratingTrial.Contrast*
+ commentId: Overload:BonVision.Collections.CreateGratingTrial.Contrast
+ href: BonVision.Collections.CreateGratingTrial.html#BonVision_Collections_CreateGratingTrial_Contrast
+ name: Contrast
+ nameWithType: CreateGratingTrial.Contrast
+ fullName: BonVision.Collections.CreateGratingTrial.Contrast
+- uid: BonVision.Collections.CreateGratingTrial.SpatialFrequency*
+ commentId: Overload:BonVision.Collections.CreateGratingTrial.SpatialFrequency
+ href: BonVision.Collections.CreateGratingTrial.html#BonVision_Collections_CreateGratingTrial_SpatialFrequency
+ name: SpatialFrequency
+ nameWithType: CreateGratingTrial.SpatialFrequency
+ fullName: BonVision.Collections.CreateGratingTrial.SpatialFrequency
+- uid: BonVision.Collections.CreateGratingTrial.TemporalFrequency*
+ commentId: Overload:BonVision.Collections.CreateGratingTrial.TemporalFrequency
+ href: BonVision.Collections.CreateGratingTrial.html#BonVision_Collections_CreateGratingTrial_TemporalFrequency
+ name: TemporalFrequency
+ nameWithType: CreateGratingTrial.TemporalFrequency
+ fullName: BonVision.Collections.CreateGratingTrial.TemporalFrequency
+- uid: BonVision.Collections.CreateGratingTrial.Orientation*
+ commentId: Overload:BonVision.Collections.CreateGratingTrial.Orientation
+ href: BonVision.Collections.CreateGratingTrial.html#BonVision_Collections_CreateGratingTrial_Orientation
+ name: Orientation
+ nameWithType: CreateGratingTrial.Orientation
+ fullName: BonVision.Collections.CreateGratingTrial.Orientation
+- uid: BonVision.Collections.CreateGratingTrial.OrientationXml*
+ commentId: Overload:BonVision.Collections.CreateGratingTrial.OrientationXml
+ href: BonVision.Collections.CreateGratingTrial.html#BonVision_Collections_CreateGratingTrial_OrientationXml
+ name: OrientationXml
+ nameWithType: CreateGratingTrial.OrientationXml
+ fullName: BonVision.Collections.CreateGratingTrial.OrientationXml
+- uid: BonVision.Collections.CreateGratingTrial.Process*
+ commentId: Overload:BonVision.Collections.CreateGratingTrial.Process
+ href: BonVision.Collections.CreateGratingTrial.html#BonVision_Collections_CreateGratingTrial_Process__1_System_IObservable___0__
+ name: Process
+ nameWithType: CreateGratingTrial.Process
+ fullName: BonVision.Collections.CreateGratingTrial.Process
+- uid: System.IObservable{{TSource}}
+ commentId: T:System.IObservable{``0}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of TSource)
+ fullName.vb: System.IObservable(Of TSource)
+ name.vb: IObservable(Of TSource)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - name: TSource
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: TSource
+ - name: )
+- uid: System.IObservable{BonVision.Collections.GratingTrial}
+ commentId: T:System.IObservable{BonVision.Collections.GratingTrial}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of GratingTrial)
+ fullName.vb: System.IObservable(Of BonVision.Collections.GratingTrial)
+ name.vb: IObservable(Of GratingTrial)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - uid: BonVision.Collections.GratingTrial
+ name: GratingTrial
+ href: BonVision.Collections.GratingTrial.html
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: BonVision.Collections.GratingTrial
+ name: GratingTrial
+ href: BonVision.Collections.GratingTrial.html
+ - name: )
+- uid: System.IObservable`1
+ commentId: T:System.IObservable`1
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of T)
+ fullName.vb: System.IObservable(Of T)
+ name.vb: IObservable(Of T)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - name: T
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: T
+ - name: )
+- uid: BonVision.Collections.GratingTrial
+ commentId: T:BonVision.Collections.GratingTrial
+ href: BonVision.Collections.GratingTrial.html
+ name: GratingTrial
+ nameWithType: GratingTrial
+ fullName: BonVision.Collections.GratingTrial
+- uid: System.IObservable{BonVision.Collections.GratingParameters}
+ commentId: T:System.IObservable{BonVision.Collections.GratingParameters}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of GratingParameters)
+ fullName.vb: System.IObservable(Of BonVision.Collections.GratingParameters)
+ name.vb: IObservable(Of GratingParameters)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - uid: BonVision.Collections.GratingParameters
+ name: GratingParameters
+ href: BonVision.Collections.GratingParameters.html
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: BonVision.Collections.GratingParameters
+ name: GratingParameters
+ href: BonVision.Collections.GratingParameters.html
+ - name: )
diff --git a/docs/api/BonVision.Collections.GratingParameters.yml b/docs/api/BonVision.Collections.GratingParameters.yml
new file mode 100644
index 0000000..2f20c33
--- /dev/null
+++ b/docs/api/BonVision.Collections.GratingParameters.yml
@@ -0,0 +1,1231 @@
+### YamlMime:ManagedReference
+items:
+- uid: BonVision.Collections.GratingParameters
+ commentId: T:BonVision.Collections.GratingParameters
+ id: GratingParameters
+ parent: BonVision.Collections
+ children:
+ - BonVision.Collections.GratingParameters.Contrast
+ - BonVision.Collections.GratingParameters.ContrastSpecified
+ - BonVision.Collections.GratingParameters.Delay
+ - BonVision.Collections.GratingParameters.DelaySpecified
+ - BonVision.Collections.GratingParameters.Diameter
+ - BonVision.Collections.GratingParameters.DiameterSpecified
+ - BonVision.Collections.GratingParameters.Duration
+ - BonVision.Collections.GratingParameters.DurationSpecified
+ - BonVision.Collections.GratingParameters.Orientation
+ - BonVision.Collections.GratingParameters.OrientationSpecified
+ - BonVision.Collections.GratingParameters.OrientationXml
+ - BonVision.Collections.GratingParameters.SpatialFrequency
+ - BonVision.Collections.GratingParameters.SpatialFrequencySpecified
+ - BonVision.Collections.GratingParameters.TemporalFrequency
+ - BonVision.Collections.GratingParameters.TemporalFrequencySpecified
+ - BonVision.Collections.GratingParameters.ToString
+ - BonVision.Collections.GratingParameters.X
+ - BonVision.Collections.GratingParameters.XSpecified
+ - BonVision.Collections.GratingParameters.Y
+ - BonVision.Collections.GratingParameters.YSpecified
+ langs:
+ - csharp
+ - vb
+ name: GratingParameters
+ nameWithType: GratingParameters
+ fullName: BonVision.Collections.GratingParameters
+ type: Class
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: GratingParameters
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 10
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public class GratingParameters
+ content.vb: Public Class GratingParameters
+ inheritance:
+ - System.Object
+ inheritedMembers:
+ - System.Object.Equals(System.Object)
+ - System.Object.Equals(System.Object,System.Object)
+ - System.Object.ReferenceEquals(System.Object,System.Object)
+ - System.Object.GetHashCode
+ - System.Object.GetType
+ - System.Object.MemberwiseClone
+- uid: BonVision.Collections.GratingParameters.Delay
+ commentId: P:BonVision.Collections.GratingParameters.Delay
+ id: Delay
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: Delay
+ nameWithType: GratingParameters.Delay
+ fullName: BonVision.Collections.GratingParameters.Delay
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Delay
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 12
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float? Delay { get; set; }
+ parameters: []
+ return:
+ type: System.Nullable{System.Single}
+ content.vb: Public Property Delay As Single?
+ overload: BonVision.Collections.GratingParameters.Delay*
+- uid: BonVision.Collections.GratingParameters.Duration
+ commentId: P:BonVision.Collections.GratingParameters.Duration
+ id: Duration
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: Duration
+ nameWithType: GratingParameters.Duration
+ fullName: BonVision.Collections.GratingParameters.Duration
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Duration
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 14
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float? Duration { get; set; }
+ parameters: []
+ return:
+ type: System.Nullable{System.Single}
+ content.vb: Public Property Duration As Single?
+ overload: BonVision.Collections.GratingParameters.Duration*
+- uid: BonVision.Collections.GratingParameters.Diameter
+ commentId: P:BonVision.Collections.GratingParameters.Diameter
+ id: Diameter
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: Diameter
+ nameWithType: GratingParameters.Diameter
+ fullName: BonVision.Collections.GratingParameters.Diameter
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Diameter
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 16
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float? Diameter { get; set; }
+ parameters: []
+ return:
+ type: System.Nullable{System.Single}
+ content.vb: Public Property Diameter As Single?
+ overload: BonVision.Collections.GratingParameters.Diameter*
+- uid: BonVision.Collections.GratingParameters.X
+ commentId: P:BonVision.Collections.GratingParameters.X
+ id: X
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: X
+ nameWithType: GratingParameters.X
+ fullName: BonVision.Collections.GratingParameters.X
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: X
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 18
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float? X { get; set; }
+ parameters: []
+ return:
+ type: System.Nullable{System.Single}
+ content.vb: Public Property X As Single?
+ overload: BonVision.Collections.GratingParameters.X*
+- uid: BonVision.Collections.GratingParameters.Y
+ commentId: P:BonVision.Collections.GratingParameters.Y
+ id: Y
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: Y
+ nameWithType: GratingParameters.Y
+ fullName: BonVision.Collections.GratingParameters.Y
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Y
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 20
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float? Y { get; set; }
+ parameters: []
+ return:
+ type: System.Nullable{System.Single}
+ content.vb: Public Property Y As Single?
+ overload: BonVision.Collections.GratingParameters.Y*
+- uid: BonVision.Collections.GratingParameters.Contrast
+ commentId: P:BonVision.Collections.GratingParameters.Contrast
+ id: Contrast
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: Contrast
+ nameWithType: GratingParameters.Contrast
+ fullName: BonVision.Collections.GratingParameters.Contrast
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Contrast
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 22
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float? Contrast { get; set; }
+ parameters: []
+ return:
+ type: System.Nullable{System.Single}
+ content.vb: Public Property Contrast As Single?
+ overload: BonVision.Collections.GratingParameters.Contrast*
+- uid: BonVision.Collections.GratingParameters.SpatialFrequency
+ commentId: P:BonVision.Collections.GratingParameters.SpatialFrequency
+ id: SpatialFrequency
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: SpatialFrequency
+ nameWithType: GratingParameters.SpatialFrequency
+ fullName: BonVision.Collections.GratingParameters.SpatialFrequency
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: SpatialFrequency
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 24
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float? SpatialFrequency { get; set; }
+ parameters: []
+ return:
+ type: System.Nullable{System.Single}
+ content.vb: Public Property SpatialFrequency As Single?
+ overload: BonVision.Collections.GratingParameters.SpatialFrequency*
+- uid: BonVision.Collections.GratingParameters.TemporalFrequency
+ commentId: P:BonVision.Collections.GratingParameters.TemporalFrequency
+ id: TemporalFrequency
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: TemporalFrequency
+ nameWithType: GratingParameters.TemporalFrequency
+ fullName: BonVision.Collections.GratingParameters.TemporalFrequency
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: TemporalFrequency
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 26
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float? TemporalFrequency { get; set; }
+ parameters: []
+ return:
+ type: System.Nullable{System.Single}
+ content.vb: Public Property TemporalFrequency As Single?
+ overload: BonVision.Collections.GratingParameters.TemporalFrequency*
+- uid: BonVision.Collections.GratingParameters.Orientation
+ commentId: P:BonVision.Collections.GratingParameters.Orientation
+ id: Orientation
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: Orientation
+ nameWithType: GratingParameters.Orientation
+ fullName: BonVision.Collections.GratingParameters.Orientation
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Orientation
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 28
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: >-
+ [Range(-3.141592653589793, 3.141592653589793)]
+
+ [TypeConverter(typeof(NullableDegreeConverter))]
+
+ public float? Orientation { get; set; }
+ parameters: []
+ return:
+ type: System.Nullable{System.Single}
+ content.vb: >-
+
+
+
+
+ Public Property Orientation As Single?
+ overload: BonVision.Collections.GratingParameters.Orientation*
+ attributes:
+ - type: Bonsai.RangeAttribute
+ ctor: Bonsai.RangeAttribute.#ctor(System.Double,System.Double)
+ arguments:
+ - type: System.Double
+ value: -3.141592653589793
+ - type: System.Double
+ value: 3.141592653589793
+- uid: BonVision.Collections.GratingParameters.OrientationXml
+ commentId: P:BonVision.Collections.GratingParameters.OrientationXml
+ id: OrientationXml
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: OrientationXml
+ nameWithType: GratingParameters.OrientationXml
+ fullName: BonVision.Collections.GratingParameters.OrientationXml
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: OrientationXml
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 34
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: >-
+ [Browsable(false)]
+
+ public float? OrientationXml { get; set; }
+ parameters: []
+ return:
+ type: System.Nullable{System.Single}
+ content.vb: >-
+
+
+ Public Property OrientationXml As Single?
+ overload: BonVision.Collections.GratingParameters.OrientationXml*
+ attributes:
+ - type: System.ComponentModel.BrowsableAttribute
+ ctor: System.ComponentModel.BrowsableAttribute.#ctor(System.Boolean)
+ arguments:
+ - type: System.Boolean
+ value: false
+- uid: BonVision.Collections.GratingParameters.DelaySpecified
+ commentId: P:BonVision.Collections.GratingParameters.DelaySpecified
+ id: DelaySpecified
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: DelaySpecified
+ nameWithType: GratingParameters.DelaySpecified
+ fullName: BonVision.Collections.GratingParameters.DelaySpecified
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: DelaySpecified
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 42
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: >-
+ [Browsable(false)]
+
+ public bool DelaySpecified { get; }
+ parameters: []
+ return:
+ type: System.Boolean
+ content.vb: >-
+
+
+ Public ReadOnly Property DelaySpecified As Boolean
+ overload: BonVision.Collections.GratingParameters.DelaySpecified*
+ attributes:
+ - type: System.ComponentModel.BrowsableAttribute
+ ctor: System.ComponentModel.BrowsableAttribute.#ctor(System.Boolean)
+ arguments:
+ - type: System.Boolean
+ value: false
+- uid: BonVision.Collections.GratingParameters.DurationSpecified
+ commentId: P:BonVision.Collections.GratingParameters.DurationSpecified
+ id: DurationSpecified
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: DurationSpecified
+ nameWithType: GratingParameters.DurationSpecified
+ fullName: BonVision.Collections.GratingParameters.DurationSpecified
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: DurationSpecified
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 45
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: >-
+ [Browsable(false)]
+
+ public bool DurationSpecified { get; }
+ parameters: []
+ return:
+ type: System.Boolean
+ content.vb: >-
+
+
+ Public ReadOnly Property DurationSpecified As Boolean
+ overload: BonVision.Collections.GratingParameters.DurationSpecified*
+ attributes:
+ - type: System.ComponentModel.BrowsableAttribute
+ ctor: System.ComponentModel.BrowsableAttribute.#ctor(System.Boolean)
+ arguments:
+ - type: System.Boolean
+ value: false
+- uid: BonVision.Collections.GratingParameters.DiameterSpecified
+ commentId: P:BonVision.Collections.GratingParameters.DiameterSpecified
+ id: DiameterSpecified
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: DiameterSpecified
+ nameWithType: GratingParameters.DiameterSpecified
+ fullName: BonVision.Collections.GratingParameters.DiameterSpecified
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: DiameterSpecified
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 48
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: >-
+ [Browsable(false)]
+
+ public bool DiameterSpecified { get; }
+ parameters: []
+ return:
+ type: System.Boolean
+ content.vb: >-
+
+
+ Public ReadOnly Property DiameterSpecified As Boolean
+ overload: BonVision.Collections.GratingParameters.DiameterSpecified*
+ attributes:
+ - type: System.ComponentModel.BrowsableAttribute
+ ctor: System.ComponentModel.BrowsableAttribute.#ctor(System.Boolean)
+ arguments:
+ - type: System.Boolean
+ value: false
+- uid: BonVision.Collections.GratingParameters.XSpecified
+ commentId: P:BonVision.Collections.GratingParameters.XSpecified
+ id: XSpecified
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: XSpecified
+ nameWithType: GratingParameters.XSpecified
+ fullName: BonVision.Collections.GratingParameters.XSpecified
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: XSpecified
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 51
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: >-
+ [Browsable(false)]
+
+ public bool XSpecified { get; }
+ parameters: []
+ return:
+ type: System.Boolean
+ content.vb: >-
+
+
+ Public ReadOnly Property XSpecified As Boolean
+ overload: BonVision.Collections.GratingParameters.XSpecified*
+ attributes:
+ - type: System.ComponentModel.BrowsableAttribute
+ ctor: System.ComponentModel.BrowsableAttribute.#ctor(System.Boolean)
+ arguments:
+ - type: System.Boolean
+ value: false
+- uid: BonVision.Collections.GratingParameters.YSpecified
+ commentId: P:BonVision.Collections.GratingParameters.YSpecified
+ id: YSpecified
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: YSpecified
+ nameWithType: GratingParameters.YSpecified
+ fullName: BonVision.Collections.GratingParameters.YSpecified
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: YSpecified
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 54
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: >-
+ [Browsable(false)]
+
+ public bool YSpecified { get; }
+ parameters: []
+ return:
+ type: System.Boolean
+ content.vb: >-
+
+
+ Public ReadOnly Property YSpecified As Boolean
+ overload: BonVision.Collections.GratingParameters.YSpecified*
+ attributes:
+ - type: System.ComponentModel.BrowsableAttribute
+ ctor: System.ComponentModel.BrowsableAttribute.#ctor(System.Boolean)
+ arguments:
+ - type: System.Boolean
+ value: false
+- uid: BonVision.Collections.GratingParameters.ContrastSpecified
+ commentId: P:BonVision.Collections.GratingParameters.ContrastSpecified
+ id: ContrastSpecified
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: ContrastSpecified
+ nameWithType: GratingParameters.ContrastSpecified
+ fullName: BonVision.Collections.GratingParameters.ContrastSpecified
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: ContrastSpecified
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 57
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: >-
+ [Browsable(false)]
+
+ public bool ContrastSpecified { get; }
+ parameters: []
+ return:
+ type: System.Boolean
+ content.vb: >-
+
+
+ Public ReadOnly Property ContrastSpecified As Boolean
+ overload: BonVision.Collections.GratingParameters.ContrastSpecified*
+ attributes:
+ - type: System.ComponentModel.BrowsableAttribute
+ ctor: System.ComponentModel.BrowsableAttribute.#ctor(System.Boolean)
+ arguments:
+ - type: System.Boolean
+ value: false
+- uid: BonVision.Collections.GratingParameters.SpatialFrequencySpecified
+ commentId: P:BonVision.Collections.GratingParameters.SpatialFrequencySpecified
+ id: SpatialFrequencySpecified
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: SpatialFrequencySpecified
+ nameWithType: GratingParameters.SpatialFrequencySpecified
+ fullName: BonVision.Collections.GratingParameters.SpatialFrequencySpecified
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: SpatialFrequencySpecified
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 60
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: >-
+ [Browsable(false)]
+
+ public bool SpatialFrequencySpecified { get; }
+ parameters: []
+ return:
+ type: System.Boolean
+ content.vb: >-
+
+
+ Public ReadOnly Property SpatialFrequencySpecified As Boolean
+ overload: BonVision.Collections.GratingParameters.SpatialFrequencySpecified*
+ attributes:
+ - type: System.ComponentModel.BrowsableAttribute
+ ctor: System.ComponentModel.BrowsableAttribute.#ctor(System.Boolean)
+ arguments:
+ - type: System.Boolean
+ value: false
+- uid: BonVision.Collections.GratingParameters.TemporalFrequencySpecified
+ commentId: P:BonVision.Collections.GratingParameters.TemporalFrequencySpecified
+ id: TemporalFrequencySpecified
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: TemporalFrequencySpecified
+ nameWithType: GratingParameters.TemporalFrequencySpecified
+ fullName: BonVision.Collections.GratingParameters.TemporalFrequencySpecified
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: TemporalFrequencySpecified
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 63
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: >-
+ [Browsable(false)]
+
+ public bool TemporalFrequencySpecified { get; }
+ parameters: []
+ return:
+ type: System.Boolean
+ content.vb: >-
+
+
+ Public ReadOnly Property TemporalFrequencySpecified As Boolean
+ overload: BonVision.Collections.GratingParameters.TemporalFrequencySpecified*
+ attributes:
+ - type: System.ComponentModel.BrowsableAttribute
+ ctor: System.ComponentModel.BrowsableAttribute.#ctor(System.Boolean)
+ arguments:
+ - type: System.Boolean
+ value: false
+- uid: BonVision.Collections.GratingParameters.OrientationSpecified
+ commentId: P:BonVision.Collections.GratingParameters.OrientationSpecified
+ id: OrientationSpecified
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: OrientationSpecified
+ nameWithType: GratingParameters.OrientationSpecified
+ fullName: BonVision.Collections.GratingParameters.OrientationSpecified
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: OrientationSpecified
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 66
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: >-
+ [Browsable(false)]
+
+ public bool OrientationSpecified { get; }
+ parameters: []
+ return:
+ type: System.Boolean
+ content.vb: >-
+
+
+ Public ReadOnly Property OrientationSpecified As Boolean
+ overload: BonVision.Collections.GratingParameters.OrientationSpecified*
+ attributes:
+ - type: System.ComponentModel.BrowsableAttribute
+ ctor: System.ComponentModel.BrowsableAttribute.#ctor(System.Boolean)
+ arguments:
+ - type: System.Boolean
+ value: false
+- uid: BonVision.Collections.GratingParameters.ToString
+ commentId: M:BonVision.Collections.GratingParameters.ToString
+ id: ToString
+ parent: BonVision.Collections.GratingParameters
+ langs:
+ - csharp
+ - vb
+ name: ToString()
+ nameWithType: GratingParameters.ToString()
+ fullName: BonVision.Collections.GratingParameters.ToString()
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: ToString
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 69
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ summary: Returns a string that represents the current object.
+ example: []
+ syntax:
+ content: public override string ToString()
+ return:
+ type: System.String
+ description: A string that represents the current object.
+ content.vb: Public Overrides Function ToString() As String
+ overridden: System.Object.ToString
+ overload: BonVision.Collections.GratingParameters.ToString*
+references:
+- uid: BonVision.Collections
+ commentId: N:BonVision.Collections
+ href: BonVision.html
+ name: BonVision.Collections
+ nameWithType: BonVision.Collections
+ fullName: BonVision.Collections
+ spec.csharp:
+ - uid: BonVision
+ name: BonVision
+ href: BonVision.html
+ - name: .
+ - uid: BonVision.Collections
+ name: Collections
+ href: BonVision.Collections.html
+ spec.vb:
+ - uid: BonVision
+ name: BonVision
+ href: BonVision.html
+ - name: .
+ - uid: BonVision.Collections
+ name: Collections
+ href: BonVision.Collections.html
+- uid: System.Object
+ commentId: T:System.Object
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ name: object
+ nameWithType: object
+ fullName: object
+ nameWithType.vb: Object
+ fullName.vb: Object
+ name.vb: Object
+- uid: System.Object.Equals(System.Object)
+ commentId: M:System.Object.Equals(System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ name: Equals(object)
+ nameWithType: object.Equals(object)
+ fullName: object.Equals(object)
+ nameWithType.vb: Object.Equals(Object)
+ fullName.vb: Object.Equals(Object)
+ name.vb: Equals(Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.Equals(System.Object,System.Object)
+ commentId: M:System.Object.Equals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ name: Equals(object, object)
+ nameWithType: object.Equals(object, object)
+ fullName: object.Equals(object, object)
+ nameWithType.vb: Object.Equals(Object, Object)
+ fullName.vb: Object.Equals(Object, Object)
+ name.vb: Equals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ name: ReferenceEquals(object, object)
+ nameWithType: object.ReferenceEquals(object, object)
+ fullName: object.ReferenceEquals(object, object)
+ nameWithType.vb: Object.ReferenceEquals(Object, Object)
+ fullName.vb: Object.ReferenceEquals(Object, Object)
+ name.vb: ReferenceEquals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.GetHashCode
+ commentId: M:System.Object.GetHashCode
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ name: GetHashCode()
+ nameWithType: object.GetHashCode()
+ fullName: object.GetHashCode()
+ nameWithType.vb: Object.GetHashCode()
+ fullName.vb: Object.GetHashCode()
+ spec.csharp:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+- uid: System.Object.GetType
+ commentId: M:System.Object.GetType
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ name: GetType()
+ nameWithType: object.GetType()
+ fullName: object.GetType()
+ nameWithType.vb: Object.GetType()
+ fullName.vb: Object.GetType()
+ spec.csharp:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+- uid: System.Object.MemberwiseClone
+ commentId: M:System.Object.MemberwiseClone
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ name: MemberwiseClone()
+ nameWithType: object.MemberwiseClone()
+ fullName: object.MemberwiseClone()
+ nameWithType.vb: Object.MemberwiseClone()
+ fullName.vb: Object.MemberwiseClone()
+ spec.csharp:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+- uid: System
+ commentId: N:System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system
+ name: System
+ nameWithType: System
+ fullName: System
+- uid: BonVision.Collections.GratingParameters.Delay*
+ commentId: Overload:BonVision.Collections.GratingParameters.Delay
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_Delay
+ name: Delay
+ nameWithType: GratingParameters.Delay
+ fullName: BonVision.Collections.GratingParameters.Delay
+- uid: System.Nullable{System.Single}
+ commentId: T:System.Nullable{System.Single}
+ parent: System
+ definition: System.Nullable`1
+ href: https://learn.microsoft.com/dotnet/api/system.single
+ name: float?
+ nameWithType: float?
+ fullName: float?
+ nameWithType.vb: Single?
+ fullName.vb: Single?
+ name.vb: Single?
+ spec.csharp:
+ - uid: System.Single
+ name: float
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.single
+ - name: '?'
+ spec.vb:
+ - uid: System.Single
+ name: Single
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.single
+ - name: '?'
+- uid: System.Nullable`1
+ commentId: T:System.Nullable`1
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.nullable-1
+ name: Nullable
+ nameWithType: Nullable
+ fullName: System.Nullable
+ nameWithType.vb: Nullable(Of T)
+ fullName.vb: System.Nullable(Of T)
+ name.vb: Nullable(Of T)
+ spec.csharp:
+ - uid: System.Nullable`1
+ name: Nullable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.nullable-1
+ - name: <
+ - name: T
+ - name: '>'
+ spec.vb:
+ - uid: System.Nullable`1
+ name: Nullable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.nullable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: T
+ - name: )
+- uid: BonVision.Collections.GratingParameters.Duration*
+ commentId: Overload:BonVision.Collections.GratingParameters.Duration
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_Duration
+ name: Duration
+ nameWithType: GratingParameters.Duration
+ fullName: BonVision.Collections.GratingParameters.Duration
+- uid: BonVision.Collections.GratingParameters.Diameter*
+ commentId: Overload:BonVision.Collections.GratingParameters.Diameter
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_Diameter
+ name: Diameter
+ nameWithType: GratingParameters.Diameter
+ fullName: BonVision.Collections.GratingParameters.Diameter
+- uid: BonVision.Collections.GratingParameters.X*
+ commentId: Overload:BonVision.Collections.GratingParameters.X
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_X
+ name: X
+ nameWithType: GratingParameters.X
+ fullName: BonVision.Collections.GratingParameters.X
+- uid: BonVision.Collections.GratingParameters.Y*
+ commentId: Overload:BonVision.Collections.GratingParameters.Y
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_Y
+ name: Y
+ nameWithType: GratingParameters.Y
+ fullName: BonVision.Collections.GratingParameters.Y
+- uid: BonVision.Collections.GratingParameters.Contrast*
+ commentId: Overload:BonVision.Collections.GratingParameters.Contrast
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_Contrast
+ name: Contrast
+ nameWithType: GratingParameters.Contrast
+ fullName: BonVision.Collections.GratingParameters.Contrast
+- uid: BonVision.Collections.GratingParameters.SpatialFrequency*
+ commentId: Overload:BonVision.Collections.GratingParameters.SpatialFrequency
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_SpatialFrequency
+ name: SpatialFrequency
+ nameWithType: GratingParameters.SpatialFrequency
+ fullName: BonVision.Collections.GratingParameters.SpatialFrequency
+- uid: BonVision.Collections.GratingParameters.TemporalFrequency*
+ commentId: Overload:BonVision.Collections.GratingParameters.TemporalFrequency
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_TemporalFrequency
+ name: TemporalFrequency
+ nameWithType: GratingParameters.TemporalFrequency
+ fullName: BonVision.Collections.GratingParameters.TemporalFrequency
+- uid: BonVision.Collections.GratingParameters.Orientation*
+ commentId: Overload:BonVision.Collections.GratingParameters.Orientation
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_Orientation
+ name: Orientation
+ nameWithType: GratingParameters.Orientation
+ fullName: BonVision.Collections.GratingParameters.Orientation
+- uid: BonVision.Collections.GratingParameters.OrientationXml*
+ commentId: Overload:BonVision.Collections.GratingParameters.OrientationXml
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_OrientationXml
+ name: OrientationXml
+ nameWithType: GratingParameters.OrientationXml
+ fullName: BonVision.Collections.GratingParameters.OrientationXml
+- uid: BonVision.Collections.GratingParameters.DelaySpecified*
+ commentId: Overload:BonVision.Collections.GratingParameters.DelaySpecified
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_DelaySpecified
+ name: DelaySpecified
+ nameWithType: GratingParameters.DelaySpecified
+ fullName: BonVision.Collections.GratingParameters.DelaySpecified
+- uid: System.Boolean
+ commentId: T:System.Boolean
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.boolean
+ name: bool
+ nameWithType: bool
+ fullName: bool
+ nameWithType.vb: Boolean
+ fullName.vb: Boolean
+ name.vb: Boolean
+- uid: BonVision.Collections.GratingParameters.DurationSpecified*
+ commentId: Overload:BonVision.Collections.GratingParameters.DurationSpecified
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_DurationSpecified
+ name: DurationSpecified
+ nameWithType: GratingParameters.DurationSpecified
+ fullName: BonVision.Collections.GratingParameters.DurationSpecified
+- uid: BonVision.Collections.GratingParameters.DiameterSpecified*
+ commentId: Overload:BonVision.Collections.GratingParameters.DiameterSpecified
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_DiameterSpecified
+ name: DiameterSpecified
+ nameWithType: GratingParameters.DiameterSpecified
+ fullName: BonVision.Collections.GratingParameters.DiameterSpecified
+- uid: BonVision.Collections.GratingParameters.XSpecified*
+ commentId: Overload:BonVision.Collections.GratingParameters.XSpecified
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_XSpecified
+ name: XSpecified
+ nameWithType: GratingParameters.XSpecified
+ fullName: BonVision.Collections.GratingParameters.XSpecified
+- uid: BonVision.Collections.GratingParameters.YSpecified*
+ commentId: Overload:BonVision.Collections.GratingParameters.YSpecified
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_YSpecified
+ name: YSpecified
+ nameWithType: GratingParameters.YSpecified
+ fullName: BonVision.Collections.GratingParameters.YSpecified
+- uid: BonVision.Collections.GratingParameters.ContrastSpecified*
+ commentId: Overload:BonVision.Collections.GratingParameters.ContrastSpecified
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_ContrastSpecified
+ name: ContrastSpecified
+ nameWithType: GratingParameters.ContrastSpecified
+ fullName: BonVision.Collections.GratingParameters.ContrastSpecified
+- uid: BonVision.Collections.GratingParameters.SpatialFrequencySpecified*
+ commentId: Overload:BonVision.Collections.GratingParameters.SpatialFrequencySpecified
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_SpatialFrequencySpecified
+ name: SpatialFrequencySpecified
+ nameWithType: GratingParameters.SpatialFrequencySpecified
+ fullName: BonVision.Collections.GratingParameters.SpatialFrequencySpecified
+- uid: BonVision.Collections.GratingParameters.TemporalFrequencySpecified*
+ commentId: Overload:BonVision.Collections.GratingParameters.TemporalFrequencySpecified
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_TemporalFrequencySpecified
+ name: TemporalFrequencySpecified
+ nameWithType: GratingParameters.TemporalFrequencySpecified
+ fullName: BonVision.Collections.GratingParameters.TemporalFrequencySpecified
+- uid: BonVision.Collections.GratingParameters.OrientationSpecified*
+ commentId: Overload:BonVision.Collections.GratingParameters.OrientationSpecified
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_OrientationSpecified
+ name: OrientationSpecified
+ nameWithType: GratingParameters.OrientationSpecified
+ fullName: BonVision.Collections.GratingParameters.OrientationSpecified
+- uid: System.Object.ToString
+ commentId: M:System.Object.ToString
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ name: ToString()
+ nameWithType: object.ToString()
+ fullName: object.ToString()
+ nameWithType.vb: Object.ToString()
+ fullName.vb: Object.ToString()
+ spec.csharp:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+- uid: BonVision.Collections.GratingParameters.ToString*
+ commentId: Overload:BonVision.Collections.GratingParameters.ToString
+ href: BonVision.Collections.GratingParameters.html#BonVision_Collections_GratingParameters_ToString
+ name: ToString
+ nameWithType: GratingParameters.ToString
+ fullName: BonVision.Collections.GratingParameters.ToString
+- uid: System.String
+ commentId: T:System.String
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.string
+ name: string
+ nameWithType: string
+ fullName: string
+ nameWithType.vb: String
+ fullName.vb: String
+ name.vb: String
diff --git a/docs/api/BonVision.Collections.GratingTrial.yml b/docs/api/BonVision.Collections.GratingTrial.yml
new file mode 100644
index 0000000..56586c8
--- /dev/null
+++ b/docs/api/BonVision.Collections.GratingTrial.yml
@@ -0,0 +1,718 @@
+### YamlMime:ManagedReference
+items:
+- uid: BonVision.Collections.GratingTrial
+ commentId: T:BonVision.Collections.GratingTrial
+ id: GratingTrial
+ parent: BonVision.Collections
+ children:
+ - BonVision.Collections.GratingTrial.Contrast
+ - BonVision.Collections.GratingTrial.Delay
+ - BonVision.Collections.GratingTrial.Diameter
+ - BonVision.Collections.GratingTrial.Duration
+ - BonVision.Collections.GratingTrial.Id
+ - BonVision.Collections.GratingTrial.Orientation
+ - BonVision.Collections.GratingTrial.SpatialFrequency
+ - BonVision.Collections.GratingTrial.TemporalFrequency
+ - BonVision.Collections.GratingTrial.ToString
+ - BonVision.Collections.GratingTrial.X
+ - BonVision.Collections.GratingTrial.Y
+ langs:
+ - csharp
+ - vb
+ name: GratingTrial
+ nameWithType: GratingTrial
+ fullName: BonVision.Collections.GratingTrial
+ type: Class
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: GratingTrial
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 9
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public class GratingTrial
+ content.vb: Public Class GratingTrial
+ inheritance:
+ - System.Object
+ inheritedMembers:
+ - System.Object.Equals(System.Object)
+ - System.Object.Equals(System.Object,System.Object)
+ - System.Object.ReferenceEquals(System.Object,System.Object)
+ - System.Object.GetHashCode
+ - System.Object.GetType
+ - System.Object.MemberwiseClone
+- uid: BonVision.Collections.GratingTrial.Id
+ commentId: P:BonVision.Collections.GratingTrial.Id
+ id: Id
+ parent: BonVision.Collections.GratingTrial
+ langs:
+ - csharp
+ - vb
+ name: Id
+ nameWithType: GratingTrial.Id
+ fullName: BonVision.Collections.GratingTrial.Id
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Id
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 11
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float Id { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Id As Single
+ overload: BonVision.Collections.GratingTrial.Id*
+- uid: BonVision.Collections.GratingTrial.Delay
+ commentId: P:BonVision.Collections.GratingTrial.Delay
+ id: Delay
+ parent: BonVision.Collections.GratingTrial
+ langs:
+ - csharp
+ - vb
+ name: Delay
+ nameWithType: GratingTrial.Delay
+ fullName: BonVision.Collections.GratingTrial.Delay
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Delay
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 12
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float Delay { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Delay As Single
+ overload: BonVision.Collections.GratingTrial.Delay*
+- uid: BonVision.Collections.GratingTrial.Duration
+ commentId: P:BonVision.Collections.GratingTrial.Duration
+ id: Duration
+ parent: BonVision.Collections.GratingTrial
+ langs:
+ - csharp
+ - vb
+ name: Duration
+ nameWithType: GratingTrial.Duration
+ fullName: BonVision.Collections.GratingTrial.Duration
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Duration
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 13
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float Duration { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Duration As Single
+ overload: BonVision.Collections.GratingTrial.Duration*
+- uid: BonVision.Collections.GratingTrial.Diameter
+ commentId: P:BonVision.Collections.GratingTrial.Diameter
+ id: Diameter
+ parent: BonVision.Collections.GratingTrial
+ langs:
+ - csharp
+ - vb
+ name: Diameter
+ nameWithType: GratingTrial.Diameter
+ fullName: BonVision.Collections.GratingTrial.Diameter
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Diameter
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 14
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float Diameter { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Diameter As Single
+ overload: BonVision.Collections.GratingTrial.Diameter*
+- uid: BonVision.Collections.GratingTrial.X
+ commentId: P:BonVision.Collections.GratingTrial.X
+ id: X
+ parent: BonVision.Collections.GratingTrial
+ langs:
+ - csharp
+ - vb
+ name: X
+ nameWithType: GratingTrial.X
+ fullName: BonVision.Collections.GratingTrial.X
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: X
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 15
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float X { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property X As Single
+ overload: BonVision.Collections.GratingTrial.X*
+- uid: BonVision.Collections.GratingTrial.Y
+ commentId: P:BonVision.Collections.GratingTrial.Y
+ id: Y
+ parent: BonVision.Collections.GratingTrial
+ langs:
+ - csharp
+ - vb
+ name: Y
+ nameWithType: GratingTrial.Y
+ fullName: BonVision.Collections.GratingTrial.Y
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Y
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 16
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float Y { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Y As Single
+ overload: BonVision.Collections.GratingTrial.Y*
+- uid: BonVision.Collections.GratingTrial.Contrast
+ commentId: P:BonVision.Collections.GratingTrial.Contrast
+ id: Contrast
+ parent: BonVision.Collections.GratingTrial
+ langs:
+ - csharp
+ - vb
+ name: Contrast
+ nameWithType: GratingTrial.Contrast
+ fullName: BonVision.Collections.GratingTrial.Contrast
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Contrast
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 17
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float Contrast { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Contrast As Single
+ overload: BonVision.Collections.GratingTrial.Contrast*
+- uid: BonVision.Collections.GratingTrial.SpatialFrequency
+ commentId: P:BonVision.Collections.GratingTrial.SpatialFrequency
+ id: SpatialFrequency
+ parent: BonVision.Collections.GratingTrial
+ langs:
+ - csharp
+ - vb
+ name: SpatialFrequency
+ nameWithType: GratingTrial.SpatialFrequency
+ fullName: BonVision.Collections.GratingTrial.SpatialFrequency
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: SpatialFrequency
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 18
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float SpatialFrequency { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property SpatialFrequency As Single
+ overload: BonVision.Collections.GratingTrial.SpatialFrequency*
+- uid: BonVision.Collections.GratingTrial.TemporalFrequency
+ commentId: P:BonVision.Collections.GratingTrial.TemporalFrequency
+ id: TemporalFrequency
+ parent: BonVision.Collections.GratingTrial
+ langs:
+ - csharp
+ - vb
+ name: TemporalFrequency
+ nameWithType: GratingTrial.TemporalFrequency
+ fullName: BonVision.Collections.GratingTrial.TemporalFrequency
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: TemporalFrequency
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 19
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float TemporalFrequency { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property TemporalFrequency As Single
+ overload: BonVision.Collections.GratingTrial.TemporalFrequency*
+- uid: BonVision.Collections.GratingTrial.Orientation
+ commentId: P:BonVision.Collections.GratingTrial.Orientation
+ id: Orientation
+ parent: BonVision.Collections.GratingTrial
+ langs:
+ - csharp
+ - vb
+ name: Orientation
+ nameWithType: GratingTrial.Orientation
+ fullName: BonVision.Collections.GratingTrial.Orientation
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Orientation
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 20
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public float Orientation { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Orientation As Single
+ overload: BonVision.Collections.GratingTrial.Orientation*
+- uid: BonVision.Collections.GratingTrial.ToString
+ commentId: M:BonVision.Collections.GratingTrial.ToString
+ id: ToString
+ parent: BonVision.Collections.GratingTrial
+ langs:
+ - csharp
+ - vb
+ name: ToString()
+ nameWithType: GratingTrial.ToString()
+ fullName: BonVision.Collections.GratingTrial.ToString()
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/Collections/CreateGratingTrial.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: ToString
+ path: ../src/BonVision/Collections/CreateGratingTrial.cs
+ startLine: 22
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ summary: Returns a string that represents the current object.
+ example: []
+ syntax:
+ content: public override string ToString()
+ return:
+ type: System.String
+ description: A string that represents the current object.
+ content.vb: Public Overrides Function ToString() As String
+ overridden: System.Object.ToString
+ overload: BonVision.Collections.GratingTrial.ToString*
+references:
+- uid: BonVision.Collections
+ commentId: N:BonVision.Collections
+ href: BonVision.html
+ name: BonVision.Collections
+ nameWithType: BonVision.Collections
+ fullName: BonVision.Collections
+ spec.csharp:
+ - uid: BonVision
+ name: BonVision
+ href: BonVision.html
+ - name: .
+ - uid: BonVision.Collections
+ name: Collections
+ href: BonVision.Collections.html
+ spec.vb:
+ - uid: BonVision
+ name: BonVision
+ href: BonVision.html
+ - name: .
+ - uid: BonVision.Collections
+ name: Collections
+ href: BonVision.Collections.html
+- uid: System.Object
+ commentId: T:System.Object
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ name: object
+ nameWithType: object
+ fullName: object
+ nameWithType.vb: Object
+ fullName.vb: Object
+ name.vb: Object
+- uid: System.Object.Equals(System.Object)
+ commentId: M:System.Object.Equals(System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ name: Equals(object)
+ nameWithType: object.Equals(object)
+ fullName: object.Equals(object)
+ nameWithType.vb: Object.Equals(Object)
+ fullName.vb: Object.Equals(Object)
+ name.vb: Equals(Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.Equals(System.Object,System.Object)
+ commentId: M:System.Object.Equals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ name: Equals(object, object)
+ nameWithType: object.Equals(object, object)
+ fullName: object.Equals(object, object)
+ nameWithType.vb: Object.Equals(Object, Object)
+ fullName.vb: Object.Equals(Object, Object)
+ name.vb: Equals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ name: ReferenceEquals(object, object)
+ nameWithType: object.ReferenceEquals(object, object)
+ fullName: object.ReferenceEquals(object, object)
+ nameWithType.vb: Object.ReferenceEquals(Object, Object)
+ fullName.vb: Object.ReferenceEquals(Object, Object)
+ name.vb: ReferenceEquals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.GetHashCode
+ commentId: M:System.Object.GetHashCode
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ name: GetHashCode()
+ nameWithType: object.GetHashCode()
+ fullName: object.GetHashCode()
+ nameWithType.vb: Object.GetHashCode()
+ fullName.vb: Object.GetHashCode()
+ spec.csharp:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+- uid: System.Object.GetType
+ commentId: M:System.Object.GetType
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ name: GetType()
+ nameWithType: object.GetType()
+ fullName: object.GetType()
+ nameWithType.vb: Object.GetType()
+ fullName.vb: Object.GetType()
+ spec.csharp:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+- uid: System.Object.MemberwiseClone
+ commentId: M:System.Object.MemberwiseClone
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ name: MemberwiseClone()
+ nameWithType: object.MemberwiseClone()
+ fullName: object.MemberwiseClone()
+ nameWithType.vb: Object.MemberwiseClone()
+ fullName.vb: Object.MemberwiseClone()
+ spec.csharp:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+- uid: System
+ commentId: N:System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system
+ name: System
+ nameWithType: System
+ fullName: System
+- uid: BonVision.Collections.GratingTrial.Id*
+ commentId: Overload:BonVision.Collections.GratingTrial.Id
+ href: BonVision.Collections.GratingTrial.html#BonVision_Collections_GratingTrial_Id
+ name: Id
+ nameWithType: GratingTrial.Id
+ fullName: BonVision.Collections.GratingTrial.Id
+- uid: System.Single
+ commentId: T:System.Single
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.single
+ name: float
+ nameWithType: float
+ fullName: float
+ nameWithType.vb: Single
+ fullName.vb: Single
+ name.vb: Single
+- uid: BonVision.Collections.GratingTrial.Delay*
+ commentId: Overload:BonVision.Collections.GratingTrial.Delay
+ href: BonVision.Collections.GratingTrial.html#BonVision_Collections_GratingTrial_Delay
+ name: Delay
+ nameWithType: GratingTrial.Delay
+ fullName: BonVision.Collections.GratingTrial.Delay
+- uid: BonVision.Collections.GratingTrial.Duration*
+ commentId: Overload:BonVision.Collections.GratingTrial.Duration
+ href: BonVision.Collections.GratingTrial.html#BonVision_Collections_GratingTrial_Duration
+ name: Duration
+ nameWithType: GratingTrial.Duration
+ fullName: BonVision.Collections.GratingTrial.Duration
+- uid: BonVision.Collections.GratingTrial.Diameter*
+ commentId: Overload:BonVision.Collections.GratingTrial.Diameter
+ href: BonVision.Collections.GratingTrial.html#BonVision_Collections_GratingTrial_Diameter
+ name: Diameter
+ nameWithType: GratingTrial.Diameter
+ fullName: BonVision.Collections.GratingTrial.Diameter
+- uid: BonVision.Collections.GratingTrial.X*
+ commentId: Overload:BonVision.Collections.GratingTrial.X
+ href: BonVision.Collections.GratingTrial.html#BonVision_Collections_GratingTrial_X
+ name: X
+ nameWithType: GratingTrial.X
+ fullName: BonVision.Collections.GratingTrial.X
+- uid: BonVision.Collections.GratingTrial.Y*
+ commentId: Overload:BonVision.Collections.GratingTrial.Y
+ href: BonVision.Collections.GratingTrial.html#BonVision_Collections_GratingTrial_Y
+ name: Y
+ nameWithType: GratingTrial.Y
+ fullName: BonVision.Collections.GratingTrial.Y
+- uid: BonVision.Collections.GratingTrial.Contrast*
+ commentId: Overload:BonVision.Collections.GratingTrial.Contrast
+ href: BonVision.Collections.GratingTrial.html#BonVision_Collections_GratingTrial_Contrast
+ name: Contrast
+ nameWithType: GratingTrial.Contrast
+ fullName: BonVision.Collections.GratingTrial.Contrast
+- uid: BonVision.Collections.GratingTrial.SpatialFrequency*
+ commentId: Overload:BonVision.Collections.GratingTrial.SpatialFrequency
+ href: BonVision.Collections.GratingTrial.html#BonVision_Collections_GratingTrial_SpatialFrequency
+ name: SpatialFrequency
+ nameWithType: GratingTrial.SpatialFrequency
+ fullName: BonVision.Collections.GratingTrial.SpatialFrequency
+- uid: BonVision.Collections.GratingTrial.TemporalFrequency*
+ commentId: Overload:BonVision.Collections.GratingTrial.TemporalFrequency
+ href: BonVision.Collections.GratingTrial.html#BonVision_Collections_GratingTrial_TemporalFrequency
+ name: TemporalFrequency
+ nameWithType: GratingTrial.TemporalFrequency
+ fullName: BonVision.Collections.GratingTrial.TemporalFrequency
+- uid: BonVision.Collections.GratingTrial.Orientation*
+ commentId: Overload:BonVision.Collections.GratingTrial.Orientation
+ href: BonVision.Collections.GratingTrial.html#BonVision_Collections_GratingTrial_Orientation
+ name: Orientation
+ nameWithType: GratingTrial.Orientation
+ fullName: BonVision.Collections.GratingTrial.Orientation
+- uid: System.Object.ToString
+ commentId: M:System.Object.ToString
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ name: ToString()
+ nameWithType: object.ToString()
+ fullName: object.ToString()
+ nameWithType.vb: Object.ToString()
+ fullName.vb: Object.ToString()
+ spec.csharp:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+- uid: BonVision.Collections.GratingTrial.ToString*
+ commentId: Overload:BonVision.Collections.GratingTrial.ToString
+ href: BonVision.Collections.GratingTrial.html#BonVision_Collections_GratingTrial_ToString
+ name: ToString
+ nameWithType: GratingTrial.ToString
+ fullName: BonVision.Collections.GratingTrial.ToString
+- uid: System.String
+ commentId: T:System.String
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.string
+ name: string
+ nameWithType: string
+ fullName: string
+ nameWithType.vb: String
+ fullName.vb: String
+ name.vb: String
diff --git a/docs/api/BonVision.Collections.GratingsSpecification.yml b/docs/api/BonVision.Collections.GratingsSpecification.yml
new file mode 100644
index 0000000..e2ff249
--- /dev/null
+++ b/docs/api/BonVision.Collections.GratingsSpecification.yml
@@ -0,0 +1,613 @@
+### YamlMime:ManagedReference
+items:
+- uid: BonVision.Collections.GratingsSpecification
+ commentId: T:BonVision.Collections.GratingsSpecification
+ id: GratingsSpecification
+ parent: BonVision.Collections
+ children:
+ - BonVision.Collections.GratingsSpecification.Process
+ - BonVision.Collections.GratingsSpecification.Process``1(System.IObservable{``0})
+ - BonVision.Collections.GratingsSpecification.Trials
+ langs:
+ - csharp
+ - vb
+ name: GratingsSpecification
+ nameWithType: GratingsSpecification
+ fullName: BonVision.Collections.GratingsSpecification
+ type: Class
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: GratingsSpecification
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 87
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: >-
+ [Combinator]
+
+ [WorkflowElementCategory(ElementCategory.Source)]
+
+ public class GratingsSpecification
+ content.vb: >-
+
+
+
+
+ Public Class GratingsSpecification
+ inheritance:
+ - System.Object
+ inheritedMembers:
+ - System.Object.ToString
+ - System.Object.Equals(System.Object)
+ - System.Object.Equals(System.Object,System.Object)
+ - System.Object.ReferenceEquals(System.Object,System.Object)
+ - System.Object.GetHashCode
+ - System.Object.GetType
+ - System.Object.MemberwiseClone
+ attributes:
+ - type: Bonsai.CombinatorAttribute
+ ctor: Bonsai.CombinatorAttribute.#ctor
+ arguments: []
+ - type: Bonsai.WorkflowElementCategoryAttribute
+ ctor: Bonsai.WorkflowElementCategoryAttribute.#ctor(Bonsai.ElementCategory)
+ arguments:
+ - type: Bonsai.ElementCategory
+ value: 0
+- uid: BonVision.Collections.GratingsSpecification.Trials
+ commentId: P:BonVision.Collections.GratingsSpecification.Trials
+ id: Trials
+ parent: BonVision.Collections.GratingsSpecification
+ langs:
+ - csharp
+ - vb
+ name: Trials
+ nameWithType: GratingsSpecification.Trials
+ fullName: BonVision.Collections.GratingsSpecification.Trials
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Trials
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 95
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public List Trials { get; }
+ parameters: []
+ return:
+ type: System.Collections.Generic.List{BonVision.Collections.GratingParameters}
+ content.vb: Public ReadOnly Property Trials As List(Of GratingParameters)
+ overload: BonVision.Collections.GratingsSpecification.Trials*
+- uid: BonVision.Collections.GratingsSpecification.Process
+ commentId: M:BonVision.Collections.GratingsSpecification.Process
+ id: Process
+ parent: BonVision.Collections.GratingsSpecification
+ langs:
+ - csharp
+ - vb
+ name: Process()
+ nameWithType: GratingsSpecification.Process()
+ fullName: BonVision.Collections.GratingsSpecification.Process()
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Process
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 102
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public IObservable Process()
+ return:
+ type: System.IObservable{BonVision.Collections.GratingParameters}
+ content.vb: Public Function Process() As IObservable(Of GratingParameters)
+ overload: BonVision.Collections.GratingsSpecification.Process*
+- uid: BonVision.Collections.GratingsSpecification.Process``1(System.IObservable{``0})
+ commentId: M:BonVision.Collections.GratingsSpecification.Process``1(System.IObservable{``0})
+ id: Process``1(System.IObservable{``0})
+ parent: BonVision.Collections.GratingsSpecification
+ langs:
+ - csharp
+ - vb
+ name: Process(IObservable)
+ nameWithType: GratingsSpecification.Process(IObservable)
+ fullName: BonVision.Collections.GratingsSpecification.Process(System.IObservable)
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/Collections/GratingsSpecification.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Process
+ path: ../src/BonVision/Collections/GratingsSpecification.cs
+ startLine: 107
+ assemblies:
+ - BonVision
+ namespace: BonVision.Collections
+ syntax:
+ content: public IObservable Process(IObservable source)
+ parameters:
+ - id: source
+ type: System.IObservable{{TSource}}
+ typeParameters:
+ - id: TSource
+ return:
+ type: System.IObservable{BonVision.Collections.GratingParameters}
+ content.vb: Public Function Process(Of TSource)(source As IObservable(Of TSource)) As IObservable(Of GratingParameters)
+ overload: BonVision.Collections.GratingsSpecification.Process*
+ nameWithType.vb: GratingsSpecification.Process(Of TSource)(IObservable(Of TSource))
+ fullName.vb: BonVision.Collections.GratingsSpecification.Process(Of TSource)(System.IObservable(Of TSource))
+ name.vb: Process(Of TSource)(IObservable(Of TSource))
+references:
+- uid: BonVision.Collections
+ commentId: N:BonVision.Collections
+ href: BonVision.html
+ name: BonVision.Collections
+ nameWithType: BonVision.Collections
+ fullName: BonVision.Collections
+ spec.csharp:
+ - uid: BonVision
+ name: BonVision
+ href: BonVision.html
+ - name: .
+ - uid: BonVision.Collections
+ name: Collections
+ href: BonVision.Collections.html
+ spec.vb:
+ - uid: BonVision
+ name: BonVision
+ href: BonVision.html
+ - name: .
+ - uid: BonVision.Collections
+ name: Collections
+ href: BonVision.Collections.html
+- uid: System.Object
+ commentId: T:System.Object
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ name: object
+ nameWithType: object
+ fullName: object
+ nameWithType.vb: Object
+ fullName.vb: Object
+ name.vb: Object
+- uid: System.Object.ToString
+ commentId: M:System.Object.ToString
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ name: ToString()
+ nameWithType: object.ToString()
+ fullName: object.ToString()
+ nameWithType.vb: Object.ToString()
+ fullName.vb: Object.ToString()
+ spec.csharp:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+- uid: System.Object.Equals(System.Object)
+ commentId: M:System.Object.Equals(System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ name: Equals(object)
+ nameWithType: object.Equals(object)
+ fullName: object.Equals(object)
+ nameWithType.vb: Object.Equals(Object)
+ fullName.vb: Object.Equals(Object)
+ name.vb: Equals(Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.Equals(System.Object,System.Object)
+ commentId: M:System.Object.Equals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ name: Equals(object, object)
+ nameWithType: object.Equals(object, object)
+ fullName: object.Equals(object, object)
+ nameWithType.vb: Object.Equals(Object, Object)
+ fullName.vb: Object.Equals(Object, Object)
+ name.vb: Equals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ name: ReferenceEquals(object, object)
+ nameWithType: object.ReferenceEquals(object, object)
+ fullName: object.ReferenceEquals(object, object)
+ nameWithType.vb: Object.ReferenceEquals(Object, Object)
+ fullName.vb: Object.ReferenceEquals(Object, Object)
+ name.vb: ReferenceEquals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.GetHashCode
+ commentId: M:System.Object.GetHashCode
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ name: GetHashCode()
+ nameWithType: object.GetHashCode()
+ fullName: object.GetHashCode()
+ nameWithType.vb: Object.GetHashCode()
+ fullName.vb: Object.GetHashCode()
+ spec.csharp:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+- uid: System.Object.GetType
+ commentId: M:System.Object.GetType
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ name: GetType()
+ nameWithType: object.GetType()
+ fullName: object.GetType()
+ nameWithType.vb: Object.GetType()
+ fullName.vb: Object.GetType()
+ spec.csharp:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+- uid: System.Object.MemberwiseClone
+ commentId: M:System.Object.MemberwiseClone
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ name: MemberwiseClone()
+ nameWithType: object.MemberwiseClone()
+ fullName: object.MemberwiseClone()
+ nameWithType.vb: Object.MemberwiseClone()
+ fullName.vb: Object.MemberwiseClone()
+ spec.csharp:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+- uid: System
+ commentId: N:System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system
+ name: System
+ nameWithType: System
+ fullName: System
+- uid: BonVision.Collections.GratingsSpecification.Trials*
+ commentId: Overload:BonVision.Collections.GratingsSpecification.Trials
+ href: BonVision.Collections.GratingsSpecification.html#BonVision_Collections_GratingsSpecification_Trials
+ name: Trials
+ nameWithType: GratingsSpecification.Trials
+ fullName: BonVision.Collections.GratingsSpecification.Trials
+- uid: System.Collections.Generic.List{BonVision.Collections.GratingParameters}
+ commentId: T:System.Collections.Generic.List{BonVision.Collections.GratingParameters}
+ parent: System.Collections.Generic
+ definition: System.Collections.Generic.List`1
+ href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
+ name: List
+ nameWithType: List
+ fullName: System.Collections.Generic.List
+ nameWithType.vb: List(Of GratingParameters)
+ fullName.vb: System.Collections.Generic.List(Of BonVision.Collections.GratingParameters)
+ name.vb: List(Of GratingParameters)
+ spec.csharp:
+ - uid: System.Collections.Generic.List`1
+ name: List
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
+ - name: <
+ - uid: BonVision.Collections.GratingParameters
+ name: GratingParameters
+ href: BonVision.Collections.GratingParameters.html
+ - name: '>'
+ spec.vb:
+ - uid: System.Collections.Generic.List`1
+ name: List
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: BonVision.Collections.GratingParameters
+ name: GratingParameters
+ href: BonVision.Collections.GratingParameters.html
+ - name: )
+- uid: System.Collections.Generic.List`1
+ commentId: T:System.Collections.Generic.List`1
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
+ name: List
+ nameWithType: List
+ fullName: System.Collections.Generic.List
+ nameWithType.vb: List(Of T)
+ fullName.vb: System.Collections.Generic.List(Of T)
+ name.vb: List(Of T)
+ spec.csharp:
+ - uid: System.Collections.Generic.List`1
+ name: List
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
+ - name: <
+ - name: T
+ - name: '>'
+ spec.vb:
+ - uid: System.Collections.Generic.List`1
+ name: List
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: T
+ - name: )
+- uid: System.Collections.Generic
+ commentId: N:System.Collections.Generic
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system
+ name: System.Collections.Generic
+ nameWithType: System.Collections.Generic
+ fullName: System.Collections.Generic
+ spec.csharp:
+ - uid: System
+ name: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system
+ - name: .
+ - uid: System.Collections
+ name: Collections
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.collections
+ - name: .
+ - uid: System.Collections.Generic
+ name: Generic
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.collections.generic
+ spec.vb:
+ - uid: System
+ name: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system
+ - name: .
+ - uid: System.Collections
+ name: Collections
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.collections
+ - name: .
+ - uid: System.Collections.Generic
+ name: Generic
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.collections.generic
+- uid: BonVision.Collections.GratingsSpecification.Process*
+ commentId: Overload:BonVision.Collections.GratingsSpecification.Process
+ href: BonVision.Collections.GratingsSpecification.html#BonVision_Collections_GratingsSpecification_Process
+ name: Process
+ nameWithType: GratingsSpecification.Process
+ fullName: BonVision.Collections.GratingsSpecification.Process
+- uid: System.IObservable{BonVision.Collections.GratingParameters}
+ commentId: T:System.IObservable{BonVision.Collections.GratingParameters}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of GratingParameters)
+ fullName.vb: System.IObservable(Of BonVision.Collections.GratingParameters)
+ name.vb: IObservable(Of GratingParameters)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - uid: BonVision.Collections.GratingParameters
+ name: GratingParameters
+ href: BonVision.Collections.GratingParameters.html
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: BonVision.Collections.GratingParameters
+ name: GratingParameters
+ href: BonVision.Collections.GratingParameters.html
+ - name: )
+- uid: System.IObservable`1
+ commentId: T:System.IObservable`1
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of T)
+ fullName.vb: System.IObservable(Of T)
+ name.vb: IObservable(Of T)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - name: T
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: T
+ - name: )
+- uid: System.IObservable{{TSource}}
+ commentId: T:System.IObservable{``0}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of TSource)
+ fullName.vb: System.IObservable(Of TSource)
+ name.vb: IObservable(Of TSource)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - name: TSource
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: TSource
+ - name: )
diff --git a/docs/api/BonVision.Collections.yml b/docs/api/BonVision.Collections.yml
new file mode 100644
index 0000000..0afcff2
--- /dev/null
+++ b/docs/api/BonVision.Collections.yml
@@ -0,0 +1,58 @@
+### YamlMime:ManagedReference
+items:
+- uid: BonVision.Collections
+ commentId: N:BonVision.Collections
+ id: BonVision.Collections
+ children:
+ - BonVision.Collections.CreateGratingTrial
+ - BonVision.Collections.GratingParameters
+ - BonVision.Collections.GratingTrial
+ - BonVision.Collections.GratingsSpecification
+ - BonVision.Collections.GratingSequence
+ - BonVision.Collections.SparseNoise
+ langs:
+ - csharp
+ - vb
+ name: BonVision.Collections
+ nameWithType: BonVision.Collections
+ fullName: BonVision.Collections
+ type: Namespace
+ assemblies:
+ - BonVision
+references:
+- uid: BonVision.Collections.GratingTrial
+ commentId: T:BonVision.Collections.GratingTrial
+ href: BonVision.Collections.GratingTrial.html
+ name: GratingTrial
+ nameWithType: GratingTrial
+ fullName: BonVision.Collections.GratingTrial
+- uid: BonVision.Collections.CreateGratingTrial
+ commentId: T:BonVision.Collections.CreateGratingTrial
+ href: BonVision.Collections.CreateGratingTrial.html
+ name: CreateGratingTrial
+ nameWithType: CreateGratingTrial
+ fullName: BonVision.Collections.CreateGratingTrial
+- uid: BonVision.Collections.GratingParameters
+ commentId: T:BonVision.Collections.GratingParameters
+ href: BonVision.Collections.GratingParameters.html
+ name: GratingParameters
+ nameWithType: GratingParameters
+ fullName: BonVision.Collections.GratingParameters
+- uid: BonVision.Collections.GratingsSpecification
+ commentId: T:BonVision.Collections.GratingsSpecification
+ href: BonVision.Collections.GratingsSpecification.html
+ name: GratingsSpecification
+ nameWithType: GratingsSpecification
+ fullName: BonVision.Collections.GratingsSpecification
+- uid: BonVision.Collections.GratingSequence
+ commentId: T:BonVision.Collections.GratingSequence
+ href: BonVision.Collections.GratingSequence.html
+ name: GratingSequence
+ nameWithType: GratingSequence
+ fullName: BonVision.Collections.GratingSequence
+- uid: BonVision.Collections.SparseNoise
+ commentId: T:BonVision.Collections.SparseNoise
+ href: BonVision.Collections.SparseNoise.html
+ name: SparseNoise
+ nameWithType: SparseNoise
+ fullName: BonVision.Collections.SparseNoise
diff --git a/docs/api/BonVision.CreateSparseNoiseGrid.yml b/docs/api/BonVision.CreateSparseNoiseGrid.yml
new file mode 100644
index 0000000..b219879
--- /dev/null
+++ b/docs/api/BonVision.CreateSparseNoiseGrid.yml
@@ -0,0 +1,633 @@
+### YamlMime:ManagedReference
+items:
+- uid: BonVision.CreateSparseNoiseGrid
+ commentId: T:BonVision.CreateSparseNoiseGrid
+ id: CreateSparseNoiseGrid
+ parent: BonVision
+ children:
+ - BonVision.CreateSparseNoiseGrid.ActiveQuads
+ - BonVision.CreateSparseNoiseGrid.Columns
+ - BonVision.CreateSparseNoiseGrid.Process``1(System.IObservable{``0})
+ - BonVision.CreateSparseNoiseGrid.Process``1(System.IObservable{``0},System.IObservable{System.Random})
+ - BonVision.CreateSparseNoiseGrid.Rows
+ langs:
+ - csharp
+ - vb
+ name: CreateSparseNoiseGrid
+ nameWithType: CreateSparseNoiseGrid
+ fullName: BonVision.CreateSparseNoiseGrid
+ type: Class
+ source:
+ remote:
+ path: src/BonVision/CreateSparseNoiseGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: CreateSparseNoiseGrid
+ path: ../src/BonVision/CreateSparseNoiseGrid.cs
+ startLine: 10
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: >-
+ [Combinator]
+
+ [WorkflowElementCategory(ElementCategory.Transform)]
+
+ public class CreateSparseNoiseGrid
+ content.vb: >-
+
+
+
+
+ Public Class CreateSparseNoiseGrid
+ inheritance:
+ - System.Object
+ inheritedMembers:
+ - System.Object.ToString
+ - System.Object.Equals(System.Object)
+ - System.Object.Equals(System.Object,System.Object)
+ - System.Object.ReferenceEquals(System.Object,System.Object)
+ - System.Object.GetHashCode
+ - System.Object.GetType
+ - System.Object.MemberwiseClone
+ attributes:
+ - type: Bonsai.CombinatorAttribute
+ ctor: Bonsai.CombinatorAttribute.#ctor
+ arguments: []
+ - type: Bonsai.WorkflowElementCategoryAttribute
+ ctor: Bonsai.WorkflowElementCategoryAttribute.#ctor(Bonsai.ElementCategory)
+ arguments:
+ - type: Bonsai.ElementCategory
+ value: 2
+- uid: BonVision.CreateSparseNoiseGrid.Rows
+ commentId: P:BonVision.CreateSparseNoiseGrid.Rows
+ id: Rows
+ parent: BonVision.CreateSparseNoiseGrid
+ langs:
+ - csharp
+ - vb
+ name: Rows
+ nameWithType: CreateSparseNoiseGrid.Rows
+ fullName: BonVision.CreateSparseNoiseGrid.Rows
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/CreateSparseNoiseGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Rows
+ path: ../src/BonVision/CreateSparseNoiseGrid.cs
+ startLine: 15
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public int Rows { get; set; }
+ parameters: []
+ return:
+ type: System.Int32
+ content.vb: Public Property Rows As Integer
+ overload: BonVision.CreateSparseNoiseGrid.Rows*
+- uid: BonVision.CreateSparseNoiseGrid.Columns
+ commentId: P:BonVision.CreateSparseNoiseGrid.Columns
+ id: Columns
+ parent: BonVision.CreateSparseNoiseGrid
+ langs:
+ - csharp
+ - vb
+ name: Columns
+ nameWithType: CreateSparseNoiseGrid.Columns
+ fullName: BonVision.CreateSparseNoiseGrid.Columns
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/CreateSparseNoiseGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Columns
+ path: ../src/BonVision/CreateSparseNoiseGrid.cs
+ startLine: 18
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public int Columns { get; set; }
+ parameters: []
+ return:
+ type: System.Int32
+ content.vb: Public Property Columns As Integer
+ overload: BonVision.CreateSparseNoiseGrid.Columns*
+- uid: BonVision.CreateSparseNoiseGrid.ActiveQuads
+ commentId: P:BonVision.CreateSparseNoiseGrid.ActiveQuads
+ id: ActiveQuads
+ parent: BonVision.CreateSparseNoiseGrid
+ langs:
+ - csharp
+ - vb
+ name: ActiveQuads
+ nameWithType: CreateSparseNoiseGrid.ActiveQuads
+ fullName: BonVision.CreateSparseNoiseGrid.ActiveQuads
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/CreateSparseNoiseGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: ActiveQuads
+ path: ../src/BonVision/CreateSparseNoiseGrid.cs
+ startLine: 21
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public int ActiveQuads { get; set; }
+ parameters: []
+ return:
+ type: System.Int32
+ content.vb: Public Property ActiveQuads As Integer
+ overload: BonVision.CreateSparseNoiseGrid.ActiveQuads*
+- uid: BonVision.CreateSparseNoiseGrid.Process``1(System.IObservable{``0})
+ commentId: M:BonVision.CreateSparseNoiseGrid.Process``1(System.IObservable{``0})
+ id: Process``1(System.IObservable{``0})
+ parent: BonVision.CreateSparseNoiseGrid
+ langs:
+ - csharp
+ - vb
+ name: Process(IObservable)
+ nameWithType: CreateSparseNoiseGrid.Process(IObservable)
+ fullName: BonVision.CreateSparseNoiseGrid.Process(System.IObservable)
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/CreateSparseNoiseGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Process
+ path: ../src/BonVision/CreateSparseNoiseGrid.cs
+ startLine: 24
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public IObservable Process(IObservable source)
+ parameters:
+ - id: source
+ type: System.IObservable{{TSource}}
+ typeParameters:
+ - id: TSource
+ return:
+ type: System.IObservable{System.Byte[]}
+ content.vb: Public Function Process(Of TSource)(source As IObservable(Of TSource)) As IObservable(Of Byte())
+ overload: BonVision.CreateSparseNoiseGrid.Process*
+ nameWithType.vb: CreateSparseNoiseGrid.Process(Of TSource)(IObservable(Of TSource))
+ fullName.vb: BonVision.CreateSparseNoiseGrid.Process(Of TSource)(System.IObservable(Of TSource))
+ name.vb: Process(Of TSource)(IObservable(Of TSource))
+- uid: BonVision.CreateSparseNoiseGrid.Process``1(System.IObservable{``0},System.IObservable{System.Random})
+ commentId: M:BonVision.CreateSparseNoiseGrid.Process``1(System.IObservable{``0},System.IObservable{System.Random})
+ id: Process``1(System.IObservable{``0},System.IObservable{System.Random})
+ parent: BonVision.CreateSparseNoiseGrid
+ langs:
+ - csharp
+ - vb
+ name: Process(IObservable, IObservable)
+ nameWithType: CreateSparseNoiseGrid.Process(IObservable, IObservable)
+ fullName: BonVision.CreateSparseNoiseGrid.Process(System.IObservable, System.IObservable)
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/CreateSparseNoiseGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Process
+ path: ../src/BonVision/CreateSparseNoiseGrid.cs
+ startLine: 29
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public IObservable Process(IObservable source, IObservable randomSource)
+ parameters:
+ - id: source
+ type: System.IObservable{{TSource}}
+ - id: randomSource
+ type: System.IObservable{System.Random}
+ typeParameters:
+ - id: TSource
+ return:
+ type: System.IObservable{System.Byte[]}
+ content.vb: Public Function Process(Of TSource)(source As IObservable(Of TSource), randomSource As IObservable(Of Random)) As IObservable(Of Byte())
+ overload: BonVision.CreateSparseNoiseGrid.Process*
+ nameWithType.vb: CreateSparseNoiseGrid.Process(Of TSource)(IObservable(Of TSource), IObservable(Of Random))
+ fullName.vb: BonVision.CreateSparseNoiseGrid.Process(Of TSource)(System.IObservable(Of TSource), System.IObservable(Of System.Random))
+ name.vb: Process(Of TSource)(IObservable(Of TSource), IObservable(Of Random))
+references:
+- uid: BonVision
+ commentId: N:BonVision
+ href: BonVision.html
+ name: BonVision
+ nameWithType: BonVision
+ fullName: BonVision
+- uid: System.Object
+ commentId: T:System.Object
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ name: object
+ nameWithType: object
+ fullName: object
+ nameWithType.vb: Object
+ fullName.vb: Object
+ name.vb: Object
+- uid: System.Object.ToString
+ commentId: M:System.Object.ToString
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ name: ToString()
+ nameWithType: object.ToString()
+ fullName: object.ToString()
+ nameWithType.vb: Object.ToString()
+ fullName.vb: Object.ToString()
+ spec.csharp:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+- uid: System.Object.Equals(System.Object)
+ commentId: M:System.Object.Equals(System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ name: Equals(object)
+ nameWithType: object.Equals(object)
+ fullName: object.Equals(object)
+ nameWithType.vb: Object.Equals(Object)
+ fullName.vb: Object.Equals(Object)
+ name.vb: Equals(Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.Equals(System.Object,System.Object)
+ commentId: M:System.Object.Equals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ name: Equals(object, object)
+ nameWithType: object.Equals(object, object)
+ fullName: object.Equals(object, object)
+ nameWithType.vb: Object.Equals(Object, Object)
+ fullName.vb: Object.Equals(Object, Object)
+ name.vb: Equals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ name: ReferenceEquals(object, object)
+ nameWithType: object.ReferenceEquals(object, object)
+ fullName: object.ReferenceEquals(object, object)
+ nameWithType.vb: Object.ReferenceEquals(Object, Object)
+ fullName.vb: Object.ReferenceEquals(Object, Object)
+ name.vb: ReferenceEquals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.GetHashCode
+ commentId: M:System.Object.GetHashCode
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ name: GetHashCode()
+ nameWithType: object.GetHashCode()
+ fullName: object.GetHashCode()
+ nameWithType.vb: Object.GetHashCode()
+ fullName.vb: Object.GetHashCode()
+ spec.csharp:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+- uid: System.Object.GetType
+ commentId: M:System.Object.GetType
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ name: GetType()
+ nameWithType: object.GetType()
+ fullName: object.GetType()
+ nameWithType.vb: Object.GetType()
+ fullName.vb: Object.GetType()
+ spec.csharp:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+- uid: System.Object.MemberwiseClone
+ commentId: M:System.Object.MemberwiseClone
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ name: MemberwiseClone()
+ nameWithType: object.MemberwiseClone()
+ fullName: object.MemberwiseClone()
+ nameWithType.vb: Object.MemberwiseClone()
+ fullName.vb: Object.MemberwiseClone()
+ spec.csharp:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+- uid: System
+ commentId: N:System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system
+ name: System
+ nameWithType: System
+ fullName: System
+- uid: BonVision.CreateSparseNoiseGrid.Rows*
+ commentId: Overload:BonVision.CreateSparseNoiseGrid.Rows
+ href: BonVision.CreateSparseNoiseGrid.html#BonVision_CreateSparseNoiseGrid_Rows
+ name: Rows
+ nameWithType: CreateSparseNoiseGrid.Rows
+ fullName: BonVision.CreateSparseNoiseGrid.Rows
+- uid: System.Int32
+ commentId: T:System.Int32
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.int32
+ name: int
+ nameWithType: int
+ fullName: int
+ nameWithType.vb: Integer
+ fullName.vb: Integer
+ name.vb: Integer
+- uid: BonVision.CreateSparseNoiseGrid.Columns*
+ commentId: Overload:BonVision.CreateSparseNoiseGrid.Columns
+ href: BonVision.CreateSparseNoiseGrid.html#BonVision_CreateSparseNoiseGrid_Columns
+ name: Columns
+ nameWithType: CreateSparseNoiseGrid.Columns
+ fullName: BonVision.CreateSparseNoiseGrid.Columns
+- uid: BonVision.CreateSparseNoiseGrid.ActiveQuads*
+ commentId: Overload:BonVision.CreateSparseNoiseGrid.ActiveQuads
+ href: BonVision.CreateSparseNoiseGrid.html#BonVision_CreateSparseNoiseGrid_ActiveQuads
+ name: ActiveQuads
+ nameWithType: CreateSparseNoiseGrid.ActiveQuads
+ fullName: BonVision.CreateSparseNoiseGrid.ActiveQuads
+- uid: BonVision.CreateSparseNoiseGrid.Process*
+ commentId: Overload:BonVision.CreateSparseNoiseGrid.Process
+ href: BonVision.CreateSparseNoiseGrid.html#BonVision_CreateSparseNoiseGrid_Process__1_System_IObservable___0__
+ name: Process
+ nameWithType: CreateSparseNoiseGrid.Process
+ fullName: BonVision.CreateSparseNoiseGrid.Process
+- uid: System.IObservable{{TSource}}
+ commentId: T:System.IObservable{``0}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of TSource)
+ fullName.vb: System.IObservable(Of TSource)
+ name.vb: IObservable(Of TSource)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - name: TSource
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: TSource
+ - name: )
+- uid: System.IObservable{System.Byte[]}
+ commentId: T:System.IObservable{System.Byte[]}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of Byte())
+ fullName.vb: System.IObservable(Of Byte())
+ name.vb: IObservable(Of Byte())
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - uid: System.Byte
+ name: byte
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.byte
+ - name: '['
+ - name: ']'
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: System.Byte
+ name: Byte
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.byte
+ - name: (
+ - name: )
+ - name: )
+- uid: System.IObservable`1
+ commentId: T:System.IObservable`1
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of T)
+ fullName.vb: System.IObservable(Of T)
+ name.vb: IObservable(Of T)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - name: T
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: T
+ - name: )
+- uid: System.IObservable{System.Random}
+ commentId: T:System.IObservable{System.Random}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of Random)
+ fullName.vb: System.IObservable(Of System.Random)
+ name.vb: IObservable(Of Random)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - uid: System.Random
+ name: Random
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.random
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: System.Random
+ name: Random
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.random
+ - name: )
diff --git a/docs/api/BonVision.CreateSphereGrid.yml b/docs/api/BonVision.CreateSphereGrid.yml
new file mode 100644
index 0000000..c43e52e
--- /dev/null
+++ b/docs/api/BonVision.CreateSphereGrid.yml
@@ -0,0 +1,691 @@
+### YamlMime:ManagedReference
+items:
+- uid: BonVision.CreateSphereGrid
+ commentId: T:BonVision.CreateSphereGrid
+ id: CreateSphereGrid
+ parent: BonVision
+ children:
+ - BonVision.CreateSphereGrid.#ctor
+ - BonVision.CreateSphereGrid.Bottom
+ - BonVision.CreateSphereGrid.Left
+ - BonVision.CreateSphereGrid.Process
+ - BonVision.CreateSphereGrid.Process``1(System.IObservable{``0})
+ - BonVision.CreateSphereGrid.Right
+ - BonVision.CreateSphereGrid.Top
+ langs:
+ - csharp
+ - vb
+ name: CreateSphereGrid
+ nameWithType: CreateSphereGrid
+ fullName: BonVision.CreateSphereGrid
+ type: Class
+ source:
+ remote:
+ path: src/BonVision/CreateSphereGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: CreateSphereGrid
+ path: ../src/BonVision/CreateSphereGrid.cs
+ startLine: 9
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: >-
+ [Combinator]
+
+ [WorkflowElementCategory(ElementCategory.Source)]
+
+ public class CreateSphereGrid
+ content.vb: >-
+
+
+
+
+ Public Class CreateSphereGrid
+ inheritance:
+ - System.Object
+ inheritedMembers:
+ - System.Object.ToString
+ - System.Object.Equals(System.Object)
+ - System.Object.Equals(System.Object,System.Object)
+ - System.Object.ReferenceEquals(System.Object,System.Object)
+ - System.Object.GetHashCode
+ - System.Object.GetType
+ - System.Object.MemberwiseClone
+ attributes:
+ - type: Bonsai.CombinatorAttribute
+ ctor: Bonsai.CombinatorAttribute.#ctor
+ arguments: []
+ - type: Bonsai.WorkflowElementCategoryAttribute
+ ctor: Bonsai.WorkflowElementCategoryAttribute.#ctor(Bonsai.ElementCategory)
+ arguments:
+ - type: Bonsai.ElementCategory
+ value: 0
+- uid: BonVision.CreateSphereGrid.#ctor
+ commentId: M:BonVision.CreateSphereGrid.#ctor
+ id: '#ctor'
+ parent: BonVision.CreateSphereGrid
+ langs:
+ - csharp
+ - vb
+ name: CreateSphereGrid()
+ nameWithType: CreateSphereGrid.CreateSphereGrid()
+ fullName: BonVision.CreateSphereGrid.CreateSphereGrid()
+ type: Constructor
+ source:
+ remote:
+ path: src/BonVision/CreateSphereGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: .ctor
+ path: ../src/BonVision/CreateSphereGrid.cs
+ startLine: 14
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public CreateSphereGrid()
+ content.vb: Public Sub New()
+ overload: BonVision.CreateSphereGrid.#ctor*
+ nameWithType.vb: CreateSphereGrid.New()
+ fullName.vb: BonVision.CreateSphereGrid.New()
+ name.vb: New()
+- uid: BonVision.CreateSphereGrid.Left
+ commentId: P:BonVision.CreateSphereGrid.Left
+ id: Left
+ parent: BonVision.CreateSphereGrid
+ langs:
+ - csharp
+ - vb
+ name: Left
+ nameWithType: CreateSphereGrid.Left
+ fullName: BonVision.CreateSphereGrid.Left
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/CreateSphereGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Left
+ path: ../src/BonVision/CreateSphereGrid.cs
+ startLine: 22
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public float Left { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Left As Single
+ overload: BonVision.CreateSphereGrid.Left*
+- uid: BonVision.CreateSphereGrid.Right
+ commentId: P:BonVision.CreateSphereGrid.Right
+ id: Right
+ parent: BonVision.CreateSphereGrid
+ langs:
+ - csharp
+ - vb
+ name: Right
+ nameWithType: CreateSphereGrid.Right
+ fullName: BonVision.CreateSphereGrid.Right
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/CreateSphereGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Right
+ path: ../src/BonVision/CreateSphereGrid.cs
+ startLine: 25
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public float Right { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Right As Single
+ overload: BonVision.CreateSphereGrid.Right*
+- uid: BonVision.CreateSphereGrid.Bottom
+ commentId: P:BonVision.CreateSphereGrid.Bottom
+ id: Bottom
+ parent: BonVision.CreateSphereGrid
+ langs:
+ - csharp
+ - vb
+ name: Bottom
+ nameWithType: CreateSphereGrid.Bottom
+ fullName: BonVision.CreateSphereGrid.Bottom
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/CreateSphereGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Bottom
+ path: ../src/BonVision/CreateSphereGrid.cs
+ startLine: 28
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public float Bottom { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Bottom As Single
+ overload: BonVision.CreateSphereGrid.Bottom*
+- uid: BonVision.CreateSphereGrid.Top
+ commentId: P:BonVision.CreateSphereGrid.Top
+ id: Top
+ parent: BonVision.CreateSphereGrid
+ langs:
+ - csharp
+ - vb
+ name: Top
+ nameWithType: CreateSphereGrid.Top
+ fullName: BonVision.CreateSphereGrid.Top
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/CreateSphereGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Top
+ path: ../src/BonVision/CreateSphereGrid.cs
+ startLine: 31
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public float Top { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: Public Property Top As Single
+ overload: BonVision.CreateSphereGrid.Top*
+- uid: BonVision.CreateSphereGrid.Process
+ commentId: M:BonVision.CreateSphereGrid.Process
+ id: Process
+ parent: BonVision.CreateSphereGrid
+ langs:
+ - csharp
+ - vb
+ name: Process()
+ nameWithType: CreateSphereGrid.Process()
+ fullName: BonVision.CreateSphereGrid.Process()
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/CreateSphereGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Process
+ path: ../src/BonVision/CreateSphereGrid.cs
+ startLine: 104
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public IObservable> Process()
+ return:
+ type: System.IObservable{System.Tuple{OpenTK.Matrix2x3[],System.Int32[]}}
+ content.vb: Public Function Process() As IObservable(Of Tuple(Of Matrix2x3(), Integer()))
+ overload: BonVision.CreateSphereGrid.Process*
+- uid: BonVision.CreateSphereGrid.Process``1(System.IObservable{``0})
+ commentId: M:BonVision.CreateSphereGrid.Process``1(System.IObservable{``0})
+ id: Process``1(System.IObservable{``0})
+ parent: BonVision.CreateSphereGrid
+ langs:
+ - csharp
+ - vb
+ name: Process(IObservable)
+ nameWithType: CreateSphereGrid.Process(IObservable)
+ fullName: BonVision.CreateSphereGrid.Process(System.IObservable)
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/CreateSphereGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Process
+ path: ../src/BonVision/CreateSphereGrid.cs
+ startLine: 109
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public IObservable> Process(IObservable source)
+ parameters:
+ - id: source
+ type: System.IObservable{{TSource}}
+ typeParameters:
+ - id: TSource
+ return:
+ type: System.IObservable{System.Tuple{OpenTK.Matrix2x3[],System.Int32[]}}
+ content.vb: Public Function Process(Of TSource)(source As IObservable(Of TSource)) As IObservable(Of Tuple(Of Matrix2x3(), Integer()))
+ overload: BonVision.CreateSphereGrid.Process*
+ nameWithType.vb: CreateSphereGrid.Process(Of TSource)(IObservable(Of TSource))
+ fullName.vb: BonVision.CreateSphereGrid.Process(Of TSource)(System.IObservable(Of TSource))
+ name.vb: Process(Of TSource)(IObservable(Of TSource))
+references:
+- uid: BonVision
+ commentId: N:BonVision
+ href: BonVision.html
+ name: BonVision
+ nameWithType: BonVision
+ fullName: BonVision
+- uid: System.Object
+ commentId: T:System.Object
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ name: object
+ nameWithType: object
+ fullName: object
+ nameWithType.vb: Object
+ fullName.vb: Object
+ name.vb: Object
+- uid: System.Object.ToString
+ commentId: M:System.Object.ToString
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ name: ToString()
+ nameWithType: object.ToString()
+ fullName: object.ToString()
+ nameWithType.vb: Object.ToString()
+ fullName.vb: Object.ToString()
+ spec.csharp:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+- uid: System.Object.Equals(System.Object)
+ commentId: M:System.Object.Equals(System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ name: Equals(object)
+ nameWithType: object.Equals(object)
+ fullName: object.Equals(object)
+ nameWithType.vb: Object.Equals(Object)
+ fullName.vb: Object.Equals(Object)
+ name.vb: Equals(Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.Equals(System.Object,System.Object)
+ commentId: M:System.Object.Equals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ name: Equals(object, object)
+ nameWithType: object.Equals(object, object)
+ fullName: object.Equals(object, object)
+ nameWithType.vb: Object.Equals(Object, Object)
+ fullName.vb: Object.Equals(Object, Object)
+ name.vb: Equals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ name: ReferenceEquals(object, object)
+ nameWithType: object.ReferenceEquals(object, object)
+ fullName: object.ReferenceEquals(object, object)
+ nameWithType.vb: Object.ReferenceEquals(Object, Object)
+ fullName.vb: Object.ReferenceEquals(Object, Object)
+ name.vb: ReferenceEquals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.GetHashCode
+ commentId: M:System.Object.GetHashCode
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ name: GetHashCode()
+ nameWithType: object.GetHashCode()
+ fullName: object.GetHashCode()
+ nameWithType.vb: Object.GetHashCode()
+ fullName.vb: Object.GetHashCode()
+ spec.csharp:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+- uid: System.Object.GetType
+ commentId: M:System.Object.GetType
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ name: GetType()
+ nameWithType: object.GetType()
+ fullName: object.GetType()
+ nameWithType.vb: Object.GetType()
+ fullName.vb: Object.GetType()
+ spec.csharp:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+- uid: System.Object.MemberwiseClone
+ commentId: M:System.Object.MemberwiseClone
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ name: MemberwiseClone()
+ nameWithType: object.MemberwiseClone()
+ fullName: object.MemberwiseClone()
+ nameWithType.vb: Object.MemberwiseClone()
+ fullName.vb: Object.MemberwiseClone()
+ spec.csharp:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+- uid: System
+ commentId: N:System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system
+ name: System
+ nameWithType: System
+ fullName: System
+- uid: BonVision.CreateSphereGrid.#ctor*
+ commentId: Overload:BonVision.CreateSphereGrid.#ctor
+ href: BonVision.CreateSphereGrid.html#BonVision_CreateSphereGrid__ctor
+ name: CreateSphereGrid
+ nameWithType: CreateSphereGrid.CreateSphereGrid
+ fullName: BonVision.CreateSphereGrid.CreateSphereGrid
+ nameWithType.vb: CreateSphereGrid.New
+ fullName.vb: BonVision.CreateSphereGrid.New
+ name.vb: New
+- uid: BonVision.CreateSphereGrid.Left*
+ commentId: Overload:BonVision.CreateSphereGrid.Left
+ href: BonVision.CreateSphereGrid.html#BonVision_CreateSphereGrid_Left
+ name: Left
+ nameWithType: CreateSphereGrid.Left
+ fullName: BonVision.CreateSphereGrid.Left
+- uid: System.Single
+ commentId: T:System.Single
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.single
+ name: float
+ nameWithType: float
+ fullName: float
+ nameWithType.vb: Single
+ fullName.vb: Single
+ name.vb: Single
+- uid: BonVision.CreateSphereGrid.Right*
+ commentId: Overload:BonVision.CreateSphereGrid.Right
+ href: BonVision.CreateSphereGrid.html#BonVision_CreateSphereGrid_Right
+ name: Right
+ nameWithType: CreateSphereGrid.Right
+ fullName: BonVision.CreateSphereGrid.Right
+- uid: BonVision.CreateSphereGrid.Bottom*
+ commentId: Overload:BonVision.CreateSphereGrid.Bottom
+ href: BonVision.CreateSphereGrid.html#BonVision_CreateSphereGrid_Bottom
+ name: Bottom
+ nameWithType: CreateSphereGrid.Bottom
+ fullName: BonVision.CreateSphereGrid.Bottom
+- uid: BonVision.CreateSphereGrid.Top*
+ commentId: Overload:BonVision.CreateSphereGrid.Top
+ href: BonVision.CreateSphereGrid.html#BonVision_CreateSphereGrid_Top
+ name: Top
+ nameWithType: CreateSphereGrid.Top
+ fullName: BonVision.CreateSphereGrid.Top
+- uid: BonVision.CreateSphereGrid.Process*
+ commentId: Overload:BonVision.CreateSphereGrid.Process
+ href: BonVision.CreateSphereGrid.html#BonVision_CreateSphereGrid_Process
+ name: Process
+ nameWithType: CreateSphereGrid.Process
+ fullName: BonVision.CreateSphereGrid.Process
+- uid: System.IObservable{System.Tuple{OpenTK.Matrix2x3[],System.Int32[]}}
+ commentId: T:System.IObservable{System.Tuple{OpenTK.Matrix2x3[],System.Int32[]}}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable>
+ nameWithType: IObservable>
+ fullName: System.IObservable>
+ nameWithType.vb: IObservable(Of Tuple(Of Matrix2x3(), Integer()))
+ fullName.vb: System.IObservable(Of System.Tuple(Of OpenTK.Matrix2x3(), Integer()))
+ name.vb: IObservable(Of Tuple(Of Matrix2x3(), Integer()))
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - uid: System.Tuple`2
+ name: Tuple
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.tuple-2
+ - name: <
+ - uid: OpenTK.Matrix2x3
+ name: Matrix2x3
+ isExternal: true
+ - name: '['
+ - name: ']'
+ - name: ','
+ - name: " "
+ - uid: System.Int32
+ name: int
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.int32
+ - name: '['
+ - name: ']'
+ - name: '>'
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: System.Tuple`2
+ name: Tuple
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.tuple-2
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: OpenTK.Matrix2x3
+ name: Matrix2x3
+ isExternal: true
+ - name: (
+ - name: )
+ - name: ','
+ - name: " "
+ - uid: System.Int32
+ name: Integer
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.int32
+ - name: (
+ - name: )
+ - name: )
+ - name: )
+- uid: System.IObservable`1
+ commentId: T:System.IObservable`1
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of T)
+ fullName.vb: System.IObservable(Of T)
+ name.vb: IObservable(Of T)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - name: T
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: T
+ - name: )
+- uid: System.IObservable{{TSource}}
+ commentId: T:System.IObservable{``0}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of TSource)
+ fullName.vb: System.IObservable(Of TSource)
+ name.vb: IObservable(Of TSource)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - name: TSource
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: TSource
+ - name: )
diff --git a/docs/api/BonVision.CreateTextureScale.yml b/docs/api/BonVision.CreateTextureScale.yml
new file mode 100644
index 0000000..677cf28
--- /dev/null
+++ b/docs/api/BonVision.CreateTextureScale.yml
@@ -0,0 +1,707 @@
+### YamlMime:ManagedReference
+items:
+- uid: BonVision.CreateTextureScale
+ commentId: T:BonVision.CreateTextureScale
+ id: CreateTextureScale
+ parent: BonVision
+ children:
+ - BonVision.CreateTextureScale.#ctor
+ - BonVision.CreateTextureScale.Generate
+ - BonVision.CreateTextureScale.Generate``1(System.IObservable{``0})
+ - BonVision.CreateTextureScale.X
+ - BonVision.CreateTextureScale.Y
+ langs:
+ - csharp
+ - vb
+ name: CreateTextureScale
+ nameWithType: CreateTextureScale
+ fullName: BonVision.CreateTextureScale
+ type: Class
+ source:
+ remote:
+ path: src/BonVision/CreateTextureScale.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: CreateTextureScale
+ path: ../src/BonVision/CreateTextureScale.cs
+ startLine: 9
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: 'public class CreateTextureScale : Source'
+ content.vb: Public Class CreateTextureScale Inherits Source(Of Vector2)
+ inheritance:
+ - System.Object
+ - Bonsai.Source{OpenTK.Vector2}
+ inheritedMembers:
+ - System.Object.ToString
+ - System.Object.Equals(System.Object)
+ - System.Object.Equals(System.Object,System.Object)
+ - System.Object.ReferenceEquals(System.Object,System.Object)
+ - System.Object.GetHashCode
+ - System.Object.GetType
+ - System.Object.MemberwiseClone
+- uid: BonVision.CreateTextureScale.#ctor
+ commentId: M:BonVision.CreateTextureScale.#ctor
+ id: '#ctor'
+ parent: BonVision.CreateTextureScale
+ langs:
+ - csharp
+ - vb
+ name: CreateTextureScale()
+ nameWithType: CreateTextureScale.CreateTextureScale()
+ fullName: BonVision.CreateTextureScale.CreateTextureScale()
+ type: Constructor
+ source:
+ remote:
+ path: src/BonVision/CreateTextureScale.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: .ctor
+ path: ../src/BonVision/CreateTextureScale.cs
+ startLine: 12
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public CreateTextureScale()
+ content.vb: Public Sub New()
+ overload: BonVision.CreateTextureScale.#ctor*
+ nameWithType.vb: CreateTextureScale.New()
+ fullName.vb: BonVision.CreateTextureScale.New()
+ name.vb: New()
+- uid: BonVision.CreateTextureScale.X
+ commentId: P:BonVision.CreateTextureScale.X
+ id: X
+ parent: BonVision.CreateTextureScale
+ langs:
+ - csharp
+ - vb
+ name: X
+ nameWithType: CreateTextureScale.X
+ fullName: BonVision.CreateTextureScale.X
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/CreateTextureScale.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: X
+ path: ../src/BonVision/CreateTextureScale.cs
+ startLine: 17
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: >-
+ [Range(0, 2)]
+
+ public float X { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: >-
+
+
+ Public Property X As Single
+ overload: BonVision.CreateTextureScale.X*
+ attributes:
+ - type: Bonsai.RangeAttribute
+ ctor: Bonsai.RangeAttribute.#ctor(System.Int32,System.Int32)
+ arguments:
+ - type: System.Int32
+ value: 0
+ - type: System.Int32
+ value: 2
+- uid: BonVision.CreateTextureScale.Y
+ commentId: P:BonVision.CreateTextureScale.Y
+ id: Y
+ parent: BonVision.CreateTextureScale
+ langs:
+ - csharp
+ - vb
+ name: Y
+ nameWithType: CreateTextureScale.Y
+ fullName: BonVision.CreateTextureScale.Y
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/CreateTextureScale.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Y
+ path: ../src/BonVision/CreateTextureScale.cs
+ startLine: 22
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: >-
+ [Range(0, 2)]
+
+ public float Y { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: >-
+
+
+ Public Property Y As Single
+ overload: BonVision.CreateTextureScale.Y*
+ attributes:
+ - type: Bonsai.RangeAttribute
+ ctor: Bonsai.RangeAttribute.#ctor(System.Int32,System.Int32)
+ arguments:
+ - type: System.Int32
+ value: 0
+ - type: System.Int32
+ value: 2
+- uid: BonVision.CreateTextureScale.Generate
+ commentId: M:BonVision.CreateTextureScale.Generate
+ id: Generate
+ parent: BonVision.CreateTextureScale
+ langs:
+ - csharp
+ - vb
+ name: Generate()
+ nameWithType: CreateTextureScale.Generate()
+ fullName: BonVision.CreateTextureScale.Generate()
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/CreateTextureScale.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Generate
+ path: ../src/BonVision/CreateTextureScale.cs
+ startLine: 27
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ summary: Generates an observable sequence of data elements.
+ example: []
+ syntax:
+ content: public override IObservable Generate()
+ return:
+ type: System.IObservable{OpenTK.Vector2}
+ description: An observable sequence of data elements of type .
+ content.vb: Public Overrides Function Generate() As IObservable(Of Vector2)
+ overridden: Bonsai.Source{OpenTK.Vector2}.Generate
+ overload: BonVision.CreateTextureScale.Generate*
+- uid: BonVision.CreateTextureScale.Generate``1(System.IObservable{``0})
+ commentId: M:BonVision.CreateTextureScale.Generate``1(System.IObservable{``0})
+ id: Generate``1(System.IObservable{``0})
+ parent: BonVision.CreateTextureScale
+ langs:
+ - csharp
+ - vb
+ name: Generate(IObservable)
+ nameWithType: CreateTextureScale.Generate(IObservable)
+ fullName: BonVision.CreateTextureScale.Generate(System.IObservable)
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/CreateTextureScale.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Generate
+ path: ../src/BonVision/CreateTextureScale.cs
+ startLine: 32
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public IObservable Generate(IObservable source)
+ parameters:
+ - id: source
+ type: System.IObservable{{TSource}}
+ typeParameters:
+ - id: TSource
+ return:
+ type: System.IObservable{OpenTK.Vector2}
+ content.vb: Public Function Generate(Of TSource)(source As IObservable(Of TSource)) As IObservable(Of Vector2)
+ overload: BonVision.CreateTextureScale.Generate*
+ nameWithType.vb: CreateTextureScale.Generate(Of TSource)(IObservable(Of TSource))
+ fullName.vb: BonVision.CreateTextureScale.Generate(Of TSource)(System.IObservable(Of TSource))
+ name.vb: Generate(Of TSource)(IObservable(Of TSource))
+references:
+- uid: BonVision
+ commentId: N:BonVision
+ href: BonVision.html
+ name: BonVision
+ nameWithType: BonVision
+ fullName: BonVision
+- uid: System.Object
+ commentId: T:System.Object
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ name: object
+ nameWithType: object
+ fullName: object
+ nameWithType.vb: Object
+ fullName.vb: Object
+ name.vb: Object
+- uid: Bonsai.Source{OpenTK.Vector2}
+ commentId: T:Bonsai.Source{OpenTK.Vector2}
+ parent: Bonsai
+ definition: Bonsai.Source`1
+ name: Source
+ nameWithType: Source
+ fullName: Bonsai.Source
+ nameWithType.vb: Source(Of Vector2)
+ fullName.vb: Bonsai.Source(Of OpenTK.Vector2)
+ name.vb: Source(Of Vector2)
+ spec.csharp:
+ - uid: Bonsai.Source`1
+ name: Source
+ isExternal: true
+ - name: <
+ - uid: OpenTK.Vector2
+ name: Vector2
+ isExternal: true
+ - name: '>'
+ spec.vb:
+ - uid: Bonsai.Source`1
+ name: Source
+ isExternal: true
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: OpenTK.Vector2
+ name: Vector2
+ isExternal: true
+ - name: )
+- uid: System.Object.ToString
+ commentId: M:System.Object.ToString
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ name: ToString()
+ nameWithType: object.ToString()
+ fullName: object.ToString()
+ nameWithType.vb: Object.ToString()
+ fullName.vb: Object.ToString()
+ spec.csharp:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+- uid: System.Object.Equals(System.Object)
+ commentId: M:System.Object.Equals(System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ name: Equals(object)
+ nameWithType: object.Equals(object)
+ fullName: object.Equals(object)
+ nameWithType.vb: Object.Equals(Object)
+ fullName.vb: Object.Equals(Object)
+ name.vb: Equals(Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.Equals(System.Object,System.Object)
+ commentId: M:System.Object.Equals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ name: Equals(object, object)
+ nameWithType: object.Equals(object, object)
+ fullName: object.Equals(object, object)
+ nameWithType.vb: Object.Equals(Object, Object)
+ fullName.vb: Object.Equals(Object, Object)
+ name.vb: Equals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ name: ReferenceEquals(object, object)
+ nameWithType: object.ReferenceEquals(object, object)
+ fullName: object.ReferenceEquals(object, object)
+ nameWithType.vb: Object.ReferenceEquals(Object, Object)
+ fullName.vb: Object.ReferenceEquals(Object, Object)
+ name.vb: ReferenceEquals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.GetHashCode
+ commentId: M:System.Object.GetHashCode
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ name: GetHashCode()
+ nameWithType: object.GetHashCode()
+ fullName: object.GetHashCode()
+ nameWithType.vb: Object.GetHashCode()
+ fullName.vb: Object.GetHashCode()
+ spec.csharp:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+- uid: System.Object.GetType
+ commentId: M:System.Object.GetType
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ name: GetType()
+ nameWithType: object.GetType()
+ fullName: object.GetType()
+ nameWithType.vb: Object.GetType()
+ fullName.vb: Object.GetType()
+ spec.csharp:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+- uid: System.Object.MemberwiseClone
+ commentId: M:System.Object.MemberwiseClone
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ name: MemberwiseClone()
+ nameWithType: object.MemberwiseClone()
+ fullName: object.MemberwiseClone()
+ nameWithType.vb: Object.MemberwiseClone()
+ fullName.vb: Object.MemberwiseClone()
+ spec.csharp:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+- uid: System
+ commentId: N:System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system
+ name: System
+ nameWithType: System
+ fullName: System
+- uid: Bonsai.Source`1
+ commentId: T:Bonsai.Source`1
+ isExternal: true
+ name: Source
+ nameWithType: Source
+ fullName: Bonsai.Source
+ nameWithType.vb: Source(Of TSource)
+ fullName.vb: Bonsai.Source(Of TSource)
+ name.vb: Source(Of TSource)
+ spec.csharp:
+ - uid: Bonsai.Source`1
+ name: Source
+ isExternal: true
+ - name: <
+ - name: TSource
+ - name: '>'
+ spec.vb:
+ - uid: Bonsai.Source`1
+ name: Source
+ isExternal: true
+ - name: (
+ - name: Of
+ - name: " "
+ - name: TSource
+ - name: )
+- uid: Bonsai
+ commentId: N:Bonsai
+ isExternal: true
+ name: Bonsai
+ nameWithType: Bonsai
+ fullName: Bonsai
+- uid: BonVision.CreateTextureScale.#ctor*
+ commentId: Overload:BonVision.CreateTextureScale.#ctor
+ href: BonVision.CreateTextureScale.html#BonVision_CreateTextureScale__ctor
+ name: CreateTextureScale
+ nameWithType: CreateTextureScale.CreateTextureScale
+ fullName: BonVision.CreateTextureScale.CreateTextureScale
+ nameWithType.vb: CreateTextureScale.New
+ fullName.vb: BonVision.CreateTextureScale.New
+ name.vb: New
+- uid: BonVision.CreateTextureScale.X*
+ commentId: Overload:BonVision.CreateTextureScale.X
+ href: BonVision.CreateTextureScale.html#BonVision_CreateTextureScale_X
+ name: X
+ nameWithType: CreateTextureScale.X
+ fullName: BonVision.CreateTextureScale.X
+- uid: System.Single
+ commentId: T:System.Single
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.single
+ name: float
+ nameWithType: float
+ fullName: float
+ nameWithType.vb: Single
+ fullName.vb: Single
+ name.vb: Single
+- uid: BonVision.CreateTextureScale.Y*
+ commentId: Overload:BonVision.CreateTextureScale.Y
+ href: BonVision.CreateTextureScale.html#BonVision_CreateTextureScale_Y
+ name: Y
+ nameWithType: CreateTextureScale.Y
+ fullName: BonVision.CreateTextureScale.Y
+- uid: OpenTK.Vector2
+ commentId: T:OpenTK.Vector2
+ isExternal: true
+ name: Vector2
+ nameWithType: Vector2
+ fullName: OpenTK.Vector2
+- uid: Bonsai.Source{OpenTK.Vector2}.Generate
+ commentId: M:Bonsai.Source{OpenTK.Vector2}.Generate
+ parent: Bonsai.Source{OpenTK.Vector2}
+ definition: Bonsai.Source`1.Generate
+ name: Generate()
+ nameWithType: Source.Generate()
+ fullName: Bonsai.Source.Generate()
+ nameWithType.vb: Source(Of Vector2).Generate()
+ fullName.vb: Bonsai.Source(Of OpenTK.Vector2).Generate()
+ spec.csharp:
+ - uid: Bonsai.Source{OpenTK.Vector2}.Generate
+ name: Generate
+ isExternal: true
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: Bonsai.Source{OpenTK.Vector2}.Generate
+ name: Generate
+ isExternal: true
+ - name: (
+ - name: )
+- uid: BonVision.CreateTextureScale.Generate*
+ commentId: Overload:BonVision.CreateTextureScale.Generate
+ href: BonVision.CreateTextureScale.html#BonVision_CreateTextureScale_Generate
+ name: Generate
+ nameWithType: CreateTextureScale.Generate
+ fullName: BonVision.CreateTextureScale.Generate
+- uid: System.IObservable{OpenTK.Vector2}
+ commentId: T:System.IObservable{OpenTK.Vector2}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of Vector2)
+ fullName.vb: System.IObservable(Of OpenTK.Vector2)
+ name.vb: IObservable(Of Vector2)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - uid: OpenTK.Vector2
+ name: Vector2
+ isExternal: true
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: OpenTK.Vector2
+ name: Vector2
+ isExternal: true
+ - name: )
+- uid: Bonsai.Source`1.Generate
+ commentId: M:Bonsai.Source`1.Generate
+ isExternal: true
+ name: Generate()
+ nameWithType: Source.Generate()
+ fullName: Bonsai.Source.Generate()
+ nameWithType.vb: Source(Of TSource).Generate()
+ fullName.vb: Bonsai.Source(Of TSource).Generate()
+ spec.csharp:
+ - uid: Bonsai.Source`1.Generate
+ name: Generate
+ isExternal: true
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: Bonsai.Source`1.Generate
+ name: Generate
+ isExternal: true
+ - name: (
+ - name: )
+- uid: System.IObservable`1
+ commentId: T:System.IObservable`1
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of T)
+ fullName.vb: System.IObservable(Of T)
+ name.vb: IObservable(Of T)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - name: T
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: T
+ - name: )
+- uid: System.IObservable{{TSource}}
+ commentId: T:System.IObservable{``0}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of TSource)
+ fullName.vb: System.IObservable(Of TSource)
+ name.vb: IObservable(Of TSource)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - name: TSource
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: TSource
+ - name: )
diff --git a/docs/api/BonVision.CreateTextureShift.yml b/docs/api/BonVision.CreateTextureShift.yml
new file mode 100644
index 0000000..10830a6
--- /dev/null
+++ b/docs/api/BonVision.CreateTextureShift.yml
@@ -0,0 +1,668 @@
+### YamlMime:ManagedReference
+items:
+- uid: BonVision.CreateTextureShift
+ commentId: T:BonVision.CreateTextureShift
+ id: CreateTextureShift
+ parent: BonVision
+ children:
+ - BonVision.CreateTextureShift.Generate
+ - BonVision.CreateTextureShift.Generate``1(System.IObservable{``0})
+ - BonVision.CreateTextureShift.X
+ - BonVision.CreateTextureShift.Y
+ langs:
+ - csharp
+ - vb
+ name: CreateTextureShift
+ nameWithType: CreateTextureShift
+ fullName: BonVision.CreateTextureShift
+ type: Class
+ source:
+ remote:
+ path: src/BonVision/CreateTextureShift.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: CreateTextureShift
+ path: ../src/BonVision/CreateTextureShift.cs
+ startLine: 9
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: 'public class CreateTextureShift : Source'
+ content.vb: Public Class CreateTextureShift Inherits Source(Of Vector2)
+ inheritance:
+ - System.Object
+ - Bonsai.Source{OpenTK.Vector2}
+ inheritedMembers:
+ - System.Object.ToString
+ - System.Object.Equals(System.Object)
+ - System.Object.Equals(System.Object,System.Object)
+ - System.Object.ReferenceEquals(System.Object,System.Object)
+ - System.Object.GetHashCode
+ - System.Object.GetType
+ - System.Object.MemberwiseClone
+- uid: BonVision.CreateTextureShift.X
+ commentId: P:BonVision.CreateTextureShift.X
+ id: X
+ parent: BonVision.CreateTextureShift
+ langs:
+ - csharp
+ - vb
+ name: X
+ nameWithType: CreateTextureShift.X
+ fullName: BonVision.CreateTextureShift.X
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/CreateTextureShift.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: X
+ path: ../src/BonVision/CreateTextureShift.cs
+ startLine: 12
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: >-
+ [Range(-1, 1)]
+
+ public float X { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: >-
+
+
+ Public Property X As Single
+ overload: BonVision.CreateTextureShift.X*
+ attributes:
+ - type: Bonsai.RangeAttribute
+ ctor: Bonsai.RangeAttribute.#ctor(System.Int32,System.Int32)
+ arguments:
+ - type: System.Int32
+ value: -1
+ - type: System.Int32
+ value: 1
+- uid: BonVision.CreateTextureShift.Y
+ commentId: P:BonVision.CreateTextureShift.Y
+ id: Y
+ parent: BonVision.CreateTextureShift
+ langs:
+ - csharp
+ - vb
+ name: Y
+ nameWithType: CreateTextureShift.Y
+ fullName: BonVision.CreateTextureShift.Y
+ type: Property
+ source:
+ remote:
+ path: src/BonVision/CreateTextureShift.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Y
+ path: ../src/BonVision/CreateTextureShift.cs
+ startLine: 17
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: >-
+ [Range(-1, 1)]
+
+ public float Y { get; set; }
+ parameters: []
+ return:
+ type: System.Single
+ content.vb: >-
+
+
+ Public Property Y As Single
+ overload: BonVision.CreateTextureShift.Y*
+ attributes:
+ - type: Bonsai.RangeAttribute
+ ctor: Bonsai.RangeAttribute.#ctor(System.Int32,System.Int32)
+ arguments:
+ - type: System.Int32
+ value: -1
+ - type: System.Int32
+ value: 1
+- uid: BonVision.CreateTextureShift.Generate
+ commentId: M:BonVision.CreateTextureShift.Generate
+ id: Generate
+ parent: BonVision.CreateTextureShift
+ langs:
+ - csharp
+ - vb
+ name: Generate()
+ nameWithType: CreateTextureShift.Generate()
+ fullName: BonVision.CreateTextureShift.Generate()
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/CreateTextureShift.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Generate
+ path: ../src/BonVision/CreateTextureShift.cs
+ startLine: 22
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ summary: Generates an observable sequence of data elements.
+ example: []
+ syntax:
+ content: public override IObservable Generate()
+ return:
+ type: System.IObservable{OpenTK.Vector2}
+ description: An observable sequence of data elements of type .
+ content.vb: Public Overrides Function Generate() As IObservable(Of Vector2)
+ overridden: Bonsai.Source{OpenTK.Vector2}.Generate
+ overload: BonVision.CreateTextureShift.Generate*
+- uid: BonVision.CreateTextureShift.Generate``1(System.IObservable{``0})
+ commentId: M:BonVision.CreateTextureShift.Generate``1(System.IObservable{``0})
+ id: Generate``1(System.IObservable{``0})
+ parent: BonVision.CreateTextureShift
+ langs:
+ - csharp
+ - vb
+ name: Generate(IObservable)
+ nameWithType: CreateTextureShift.Generate(IObservable)
+ fullName: BonVision.CreateTextureShift.Generate(System.IObservable)
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/CreateTextureShift.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Generate
+ path: ../src/BonVision/CreateTextureShift.cs
+ startLine: 27
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public IObservable Generate(IObservable source)
+ parameters:
+ - id: source
+ type: System.IObservable{{TSource}}
+ typeParameters:
+ - id: TSource
+ return:
+ type: System.IObservable{OpenTK.Vector2}
+ content.vb: Public Function Generate(Of TSource)(source As IObservable(Of TSource)) As IObservable(Of Vector2)
+ overload: BonVision.CreateTextureShift.Generate*
+ nameWithType.vb: CreateTextureShift.Generate(Of TSource)(IObservable(Of TSource))
+ fullName.vb: BonVision.CreateTextureShift.Generate(Of TSource)(System.IObservable(Of TSource))
+ name.vb: Generate(Of TSource)(IObservable(Of TSource))
+references:
+- uid: BonVision
+ commentId: N:BonVision
+ href: BonVision.html
+ name: BonVision
+ nameWithType: BonVision
+ fullName: BonVision
+- uid: System.Object
+ commentId: T:System.Object
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ name: object
+ nameWithType: object
+ fullName: object
+ nameWithType.vb: Object
+ fullName.vb: Object
+ name.vb: Object
+- uid: Bonsai.Source{OpenTK.Vector2}
+ commentId: T:Bonsai.Source{OpenTK.Vector2}
+ parent: Bonsai
+ definition: Bonsai.Source`1
+ name: Source
+ nameWithType: Source
+ fullName: Bonsai.Source
+ nameWithType.vb: Source(Of Vector2)
+ fullName.vb: Bonsai.Source(Of OpenTK.Vector2)
+ name.vb: Source(Of Vector2)
+ spec.csharp:
+ - uid: Bonsai.Source`1
+ name: Source
+ isExternal: true
+ - name: <
+ - uid: OpenTK.Vector2
+ name: Vector2
+ isExternal: true
+ - name: '>'
+ spec.vb:
+ - uid: Bonsai.Source`1
+ name: Source
+ isExternal: true
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: OpenTK.Vector2
+ name: Vector2
+ isExternal: true
+ - name: )
+- uid: System.Object.ToString
+ commentId: M:System.Object.ToString
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ name: ToString()
+ nameWithType: object.ToString()
+ fullName: object.ToString()
+ nameWithType.vb: Object.ToString()
+ fullName.vb: Object.ToString()
+ spec.csharp:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+- uid: System.Object.Equals(System.Object)
+ commentId: M:System.Object.Equals(System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ name: Equals(object)
+ nameWithType: object.Equals(object)
+ fullName: object.Equals(object)
+ nameWithType.vb: Object.Equals(Object)
+ fullName.vb: Object.Equals(Object)
+ name.vb: Equals(Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.Equals(System.Object,System.Object)
+ commentId: M:System.Object.Equals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ name: Equals(object, object)
+ nameWithType: object.Equals(object, object)
+ fullName: object.Equals(object, object)
+ nameWithType.vb: Object.Equals(Object, Object)
+ fullName.vb: Object.Equals(Object, Object)
+ name.vb: Equals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ name: ReferenceEquals(object, object)
+ nameWithType: object.ReferenceEquals(object, object)
+ fullName: object.ReferenceEquals(object, object)
+ nameWithType.vb: Object.ReferenceEquals(Object, Object)
+ fullName.vb: Object.ReferenceEquals(Object, Object)
+ name.vb: ReferenceEquals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.GetHashCode
+ commentId: M:System.Object.GetHashCode
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ name: GetHashCode()
+ nameWithType: object.GetHashCode()
+ fullName: object.GetHashCode()
+ nameWithType.vb: Object.GetHashCode()
+ fullName.vb: Object.GetHashCode()
+ spec.csharp:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+- uid: System.Object.GetType
+ commentId: M:System.Object.GetType
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ name: GetType()
+ nameWithType: object.GetType()
+ fullName: object.GetType()
+ nameWithType.vb: Object.GetType()
+ fullName.vb: Object.GetType()
+ spec.csharp:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+- uid: System.Object.MemberwiseClone
+ commentId: M:System.Object.MemberwiseClone
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ name: MemberwiseClone()
+ nameWithType: object.MemberwiseClone()
+ fullName: object.MemberwiseClone()
+ nameWithType.vb: Object.MemberwiseClone()
+ fullName.vb: Object.MemberwiseClone()
+ spec.csharp:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+- uid: System
+ commentId: N:System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system
+ name: System
+ nameWithType: System
+ fullName: System
+- uid: Bonsai.Source`1
+ commentId: T:Bonsai.Source`1
+ isExternal: true
+ name: Source
+ nameWithType: Source
+ fullName: Bonsai.Source
+ nameWithType.vb: Source(Of TSource)
+ fullName.vb: Bonsai.Source(Of TSource)
+ name.vb: Source(Of TSource)
+ spec.csharp:
+ - uid: Bonsai.Source`1
+ name: Source
+ isExternal: true
+ - name: <
+ - name: TSource
+ - name: '>'
+ spec.vb:
+ - uid: Bonsai.Source`1
+ name: Source
+ isExternal: true
+ - name: (
+ - name: Of
+ - name: " "
+ - name: TSource
+ - name: )
+- uid: Bonsai
+ commentId: N:Bonsai
+ isExternal: true
+ name: Bonsai
+ nameWithType: Bonsai
+ fullName: Bonsai
+- uid: BonVision.CreateTextureShift.X*
+ commentId: Overload:BonVision.CreateTextureShift.X
+ href: BonVision.CreateTextureShift.html#BonVision_CreateTextureShift_X
+ name: X
+ nameWithType: CreateTextureShift.X
+ fullName: BonVision.CreateTextureShift.X
+- uid: System.Single
+ commentId: T:System.Single
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.single
+ name: float
+ nameWithType: float
+ fullName: float
+ nameWithType.vb: Single
+ fullName.vb: Single
+ name.vb: Single
+- uid: BonVision.CreateTextureShift.Y*
+ commentId: Overload:BonVision.CreateTextureShift.Y
+ href: BonVision.CreateTextureShift.html#BonVision_CreateTextureShift_Y
+ name: Y
+ nameWithType: CreateTextureShift.Y
+ fullName: BonVision.CreateTextureShift.Y
+- uid: OpenTK.Vector2
+ commentId: T:OpenTK.Vector2
+ isExternal: true
+ name: Vector2
+ nameWithType: Vector2
+ fullName: OpenTK.Vector2
+- uid: Bonsai.Source{OpenTK.Vector2}.Generate
+ commentId: M:Bonsai.Source{OpenTK.Vector2}.Generate
+ parent: Bonsai.Source{OpenTK.Vector2}
+ definition: Bonsai.Source`1.Generate
+ name: Generate()
+ nameWithType: Source.Generate()
+ fullName: Bonsai.Source.Generate()
+ nameWithType.vb: Source(Of Vector2).Generate()
+ fullName.vb: Bonsai.Source(Of OpenTK.Vector2).Generate()
+ spec.csharp:
+ - uid: Bonsai.Source{OpenTK.Vector2}.Generate
+ name: Generate
+ isExternal: true
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: Bonsai.Source{OpenTK.Vector2}.Generate
+ name: Generate
+ isExternal: true
+ - name: (
+ - name: )
+- uid: BonVision.CreateTextureShift.Generate*
+ commentId: Overload:BonVision.CreateTextureShift.Generate
+ href: BonVision.CreateTextureShift.html#BonVision_CreateTextureShift_Generate
+ name: Generate
+ nameWithType: CreateTextureShift.Generate
+ fullName: BonVision.CreateTextureShift.Generate
+- uid: System.IObservable{OpenTK.Vector2}
+ commentId: T:System.IObservable{OpenTK.Vector2}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of Vector2)
+ fullName.vb: System.IObservable(Of OpenTK.Vector2)
+ name.vb: IObservable(Of Vector2)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - uid: OpenTK.Vector2
+ name: Vector2
+ isExternal: true
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: OpenTK.Vector2
+ name: Vector2
+ isExternal: true
+ - name: )
+- uid: Bonsai.Source`1.Generate
+ commentId: M:Bonsai.Source`1.Generate
+ isExternal: true
+ name: Generate()
+ nameWithType: Source.Generate()
+ fullName: Bonsai.Source.Generate()
+ nameWithType.vb: Source(Of TSource).Generate()
+ fullName.vb: Bonsai.Source(Of TSource).Generate()
+ spec.csharp:
+ - uid: Bonsai.Source`1.Generate
+ name: Generate
+ isExternal: true
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: Bonsai.Source`1.Generate
+ name: Generate
+ isExternal: true
+ - name: (
+ - name: )
+- uid: System.IObservable`1
+ commentId: T:System.IObservable`1
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of T)
+ fullName.vb: System.IObservable(Of T)
+ name.vb: IObservable(Of T)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - name: T
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: T
+ - name: )
+- uid: System.IObservable{{TSource}}
+ commentId: T:System.IObservable{``0}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of TSource)
+ fullName.vb: System.IObservable(Of TSource)
+ name.vb: IObservable(Of TSource)
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - name: TSource
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - name: TSource
+ - name: )
diff --git a/docs/api/BonVision.CreateVertexGrid.yml b/docs/api/BonVision.CreateVertexGrid.yml
new file mode 100644
index 0000000..749b804
--- /dev/null
+++ b/docs/api/BonVision.CreateVertexGrid.yml
@@ -0,0 +1,446 @@
+### YamlMime:ManagedReference
+items:
+- uid: BonVision.CreateVertexGrid
+ commentId: T:BonVision.CreateVertexGrid
+ id: CreateVertexGrid
+ parent: BonVision
+ children:
+ - BonVision.CreateVertexGrid.Process(System.IObservable{System.Single[]})
+ langs:
+ - csharp
+ - vb
+ name: CreateVertexGrid
+ nameWithType: CreateVertexGrid
+ fullName: BonVision.CreateVertexGrid
+ type: Class
+ source:
+ remote:
+ path: src/BonVision/CreateVertexGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: CreateVertexGrid
+ path: ../src/BonVision/CreateVertexGrid.cs
+ startLine: 9
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: >-
+ [Combinator]
+
+ [WorkflowElementCategory(ElementCategory.Transform)]
+
+ public class CreateVertexGrid
+ content.vb: >-
+
+
+
+
+ Public Class CreateVertexGrid
+ inheritance:
+ - System.Object
+ inheritedMembers:
+ - System.Object.ToString
+ - System.Object.Equals(System.Object)
+ - System.Object.Equals(System.Object,System.Object)
+ - System.Object.ReferenceEquals(System.Object,System.Object)
+ - System.Object.GetHashCode
+ - System.Object.GetType
+ - System.Object.MemberwiseClone
+ attributes:
+ - type: Bonsai.CombinatorAttribute
+ ctor: Bonsai.CombinatorAttribute.#ctor
+ arguments: []
+ - type: Bonsai.WorkflowElementCategoryAttribute
+ ctor: Bonsai.WorkflowElementCategoryAttribute.#ctor(Bonsai.ElementCategory)
+ arguments:
+ - type: Bonsai.ElementCategory
+ value: 2
+- uid: BonVision.CreateVertexGrid.Process(System.IObservable{System.Single[]})
+ commentId: M:BonVision.CreateVertexGrid.Process(System.IObservable{System.Single[]})
+ id: Process(System.IObservable{System.Single[]})
+ parent: BonVision.CreateVertexGrid
+ langs:
+ - csharp
+ - vb
+ name: Process(IObservable)
+ nameWithType: CreateVertexGrid.Process(IObservable)
+ fullName: BonVision.CreateVertexGrid.Process(System.IObservable)
+ type: Method
+ source:
+ remote:
+ path: src/BonVision/CreateVertexGrid.cs
+ branch: include-workflow-plugin
+ repo: https://github.com/banchan86/BonVision_env_dev
+ id: Process
+ path: ../src/BonVision/CreateVertexGrid.cs
+ startLine: 14
+ assemblies:
+ - BonVision
+ namespace: BonVision
+ syntax:
+ content: public IObservable Process(IObservable source)
+ parameters:
+ - id: source
+ type: System.IObservable{System.Single[]}
+ return:
+ type: System.IObservable{OpenTK.Matrix2x3[]}
+ content.vb: Public Function Process(source As IObservable(Of Single())) As IObservable(Of Matrix2x3())
+ overload: BonVision.CreateVertexGrid.Process*
+ nameWithType.vb: CreateVertexGrid.Process(IObservable(Of Single()))
+ fullName.vb: BonVision.CreateVertexGrid.Process(System.IObservable(Of Single()))
+ name.vb: Process(IObservable(Of Single()))
+references:
+- uid: BonVision
+ commentId: N:BonVision
+ href: BonVision.html
+ name: BonVision
+ nameWithType: BonVision
+ fullName: BonVision
+- uid: System.Object
+ commentId: T:System.Object
+ parent: System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ name: object
+ nameWithType: object
+ fullName: object
+ nameWithType.vb: Object
+ fullName.vb: Object
+ name.vb: Object
+- uid: System.Object.ToString
+ commentId: M:System.Object.ToString
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ name: ToString()
+ nameWithType: object.ToString()
+ fullName: object.ToString()
+ nameWithType.vb: Object.ToString()
+ fullName.vb: Object.ToString()
+ spec.csharp:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.ToString
+ name: ToString
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.tostring
+ - name: (
+ - name: )
+- uid: System.Object.Equals(System.Object)
+ commentId: M:System.Object.Equals(System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ name: Equals(object)
+ nameWithType: object.Equals(object)
+ fullName: object.Equals(object)
+ nameWithType.vb: Object.Equals(Object)
+ fullName.vb: Object.Equals(Object)
+ name.vb: Equals(Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.Equals(System.Object,System.Object)
+ commentId: M:System.Object.Equals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ name: Equals(object, object)
+ nameWithType: object.Equals(object, object)
+ fullName: object.Equals(object, object)
+ nameWithType.vb: Object.Equals(Object, Object)
+ fullName.vb: Object.Equals(Object, Object)
+ name.vb: Equals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.Equals(System.Object,System.Object)
+ name: Equals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ name: ReferenceEquals(object, object)
+ nameWithType: object.ReferenceEquals(object, object)
+ fullName: object.ReferenceEquals(object, object)
+ nameWithType.vb: Object.ReferenceEquals(Object, Object)
+ fullName.vb: Object.ReferenceEquals(Object, Object)
+ name.vb: ReferenceEquals(Object, Object)
+ spec.csharp:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+ spec.vb:
+ - uid: System.Object.ReferenceEquals(System.Object,System.Object)
+ name: ReferenceEquals
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
+ - name: (
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: ','
+ - name: " "
+ - uid: System.Object
+ name: Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object
+ - name: )
+- uid: System.Object.GetHashCode
+ commentId: M:System.Object.GetHashCode
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ name: GetHashCode()
+ nameWithType: object.GetHashCode()
+ fullName: object.GetHashCode()
+ nameWithType.vb: Object.GetHashCode()
+ fullName.vb: Object.GetHashCode()
+ spec.csharp:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetHashCode
+ name: GetHashCode
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
+ - name: (
+ - name: )
+- uid: System.Object.GetType
+ commentId: M:System.Object.GetType
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ name: GetType()
+ nameWithType: object.GetType()
+ fullName: object.GetType()
+ nameWithType.vb: Object.GetType()
+ fullName.vb: Object.GetType()
+ spec.csharp:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.GetType
+ name: GetType
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.gettype
+ - name: (
+ - name: )
+- uid: System.Object.MemberwiseClone
+ commentId: M:System.Object.MemberwiseClone
+ parent: System.Object
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ name: MemberwiseClone()
+ nameWithType: object.MemberwiseClone()
+ fullName: object.MemberwiseClone()
+ nameWithType.vb: Object.MemberwiseClone()
+ fullName.vb: Object.MemberwiseClone()
+ spec.csharp:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+ spec.vb:
+ - uid: System.Object.MemberwiseClone
+ name: MemberwiseClone
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
+ - name: (
+ - name: )
+- uid: System
+ commentId: N:System
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system
+ name: System
+ nameWithType: System
+ fullName: System
+- uid: BonVision.CreateVertexGrid.Process*
+ commentId: Overload:BonVision.CreateVertexGrid.Process
+ href: BonVision.CreateVertexGrid.html#BonVision_CreateVertexGrid_Process_System_IObservable_System_Single____
+ name: Process
+ nameWithType: CreateVertexGrid.Process
+ fullName: BonVision.CreateVertexGrid.Process
+- uid: System.IObservable{System.Single[]}
+ commentId: T:System.IObservable{System.Single[]}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of Single())
+ fullName.vb: System.IObservable(Of Single())
+ name.vb: IObservable(Of Single())
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - uid: System.Single
+ name: float
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.single
+ - name: '['
+ - name: ']'
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: System.Single
+ name: Single
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.single
+ - name: (
+ - name: )
+ - name: )
+- uid: System.IObservable{OpenTK.Matrix2x3[]}
+ commentId: T:System.IObservable{OpenTK.Matrix2x3[]}
+ parent: System
+ definition: System.IObservable`1
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable
+ fullName: System.IObservable
+ nameWithType.vb: IObservable(Of Matrix2x3())
+ fullName.vb: System.IObservable(Of OpenTK.Matrix2x3())
+ name.vb: IObservable(Of Matrix2x3())
+ spec.csharp:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: <
+ - uid: OpenTK.Matrix2x3
+ name: Matrix2x3
+ isExternal: true
+ - name: '['
+ - name: ']'
+ - name: '>'
+ spec.vb:
+ - uid: System.IObservable`1
+ name: IObservable
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ - name: (
+ - name: Of
+ - name: " "
+ - uid: OpenTK.Matrix2x3
+ name: Matrix2x3
+ isExternal: true
+ - name: (
+ - name: )
+ - name: )
+- uid: System.IObservable`1
+ commentId: T:System.IObservable`1
+ isExternal: true
+ href: https://learn.microsoft.com/dotnet/api/system.iobservable-1
+ name: IObservable
+ nameWithType: IObservable