-
Notifications
You must be signed in to change notification settings - Fork 639
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/DynamoDS/Dynamo into pm-p…
…ublish-wizard
- Loading branch information
Showing
10 changed files
with
165 additions
and
24 deletions.
There are no files selected for viewing
9 changes: 4 additions & 5 deletions
9
...rib/NodeHelpFiles/en-US/RUAGD4YGKJ6XHPIKDL7GZX63CDAFMI6KUSR6XMXEBGJJOATEI5IA.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
<!--- Autodesk.DesignScript.Geometry.TSpline.TSplineSurface.BySphereBestFit ---> | ||
<!--- RUAGD4YGKJ6XHPIKDL7GZX63CDAFMI6KUSR6XMXEBGJJOATEI5IA ---> | ||
## BySphereBestFit - Documentation | ||
This documentation file is auto generated by NodeDocumentationMarkdownGenerator, Version=2.14.0.3986, Culture=neutral, PublicKeyToken=null. | ||
## In-Depth | ||
In the example below, a T-Spline sphere primitive surface is created using the `TSplineSurface.BySphereBestFit` node from a provided list of random points. `radiusSpans` and `heightSpans` inputs control the number of faces along the height and radial spans (or meridians). The `symmetry` input controls if the shape has initial symmetry and, finally, `inSmoothMode` defines if the preview is in smooth or box mode. | ||
|
||
For more information about adding documentation to nodes see https://github.com/DynamoDS/Dynamo/wiki/Create-and-Add-Custom-Documentation-to-Nodes | ||
## Example File | ||
|
||
 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,31 @@ | ||
If ((Test-Connection art-bobcat.autodesk.com).PingSucceeded){ | ||
echo adsk reachable | ||
New-Item -Path . -Name ".npmrc" -ItemType "file" -Value "registry=https://npm.autodesk.com/artifactory/api/npm/autodesk-npm-virtual/" -Force | ||
# This script checks if the adsk network is reachable | ||
# and creates .npmrc file with appropriate value for the npm registry | ||
|
||
$npmRegistry = "https://registry.npmjs.org" | ||
$adskNpmRegistry = "https://npm.autodesk.com/artifactory/api/npm/autodesk-npm-virtual/" | ||
|
||
function createNpmrcFile { | ||
param ( | ||
[Parameter(Mandatory = $true)][string]$registry | ||
) | ||
Write-Host "Creating .npmrc file with registry=$registry" -ForegroundColor Blue | ||
New-Item -Path . -Name ".npmrc" -ItemType "file" -Value "registry=$registry" -Force | ||
} | ||
else{ | ||
echo adsk not reachable | ||
New-Item -Path . -Name ".npmrc" -ItemType "file" -Value "registry=https://registry.npmjs.org" -Force | ||
|
||
try { | ||
Write-Host "Checking if adsk npm registry is reachable..." -ForegroundColor Blue | ||
$response = Invoke-WebRequest -Uri $adskNpmRegistry -TimeoutSec 20 -ErrorAction Stop | ||
|
||
if ($response.StatusCode -eq 200) { | ||
Write-Host "adsk npm registry is reachable" -ForegroundColor Green | ||
createNpmrcFile -registry $adskNpmRegistry | ||
} | ||
else { | ||
Write-Host "adsk npm registry is not reachable" -ForegroundColor Red | ||
createNpmrcFile -registry $npmRegistry | ||
} | ||
} | ||
catch { | ||
Write-Host "adsk npm registry is not reachable" -ForegroundColor Red | ||
createNpmrcFile -registry $npmRegistry | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 6 additions & 3 deletions
9
.../docGeneratorTestFiles/TestMdOutput_CoreNodeModels/CoreNodeModels.DefineData.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
## Define Data - Documentation | ||
## In Depth | ||
In the example below, a planar T-Spline surface with extruded, subdivided and pulled vertices and faces is inspected with the `TSplineTopology.InnerVertices` node. | ||
|
||
This documentation file is auto generated by NodeDocumentationMarkdownGenerator, Version=2.13.0.2212, Culture=neutral, PublicKeyToken=null. | ||
The nodes `TSplineVertex.UVNFrame` and `TSplineUVNFrame.Position` are used to highlight the inner vertices in the surface. | ||
___ | ||
## Example File | ||
|
||
For more information about adding documentation to nodes see https://github.com/DynamoDS/Dynamo/wiki/Create-and-Add-Custom-Documentation-to-Nodes | ||
 |