User contributions

Jump to: navigation, search
Search for contributions
 
 
     
 
   

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

  • 19:56, 24 April 2017 (diff | hist) . . (+542). . N ReturnNVectorCOG(Created page with " global proc vector ReturnNVectorCOG(vector $AllVecs[]) { //Author Nick Pisca 0001d 2010 //$AllVecs[0]=<<0,0,0>>;$AllVecs[1]=<<1,-1,0>>;$AllVecs[2]=<<1,0,0>>;$AllVecs[3]=<...") (current)
  • 19:56, 24 April 2017 (diff | hist) . . (+290). . N ReturnMidPtCoord(Created page with " Function ReturnMidPtCoord(X1 As Double, Y1 As Double, Z1 As Double, X2 As Double, Y2 As Double, Z2 As Double) As Variant Dim FinalPt(2) FinalPt(0) = (X1 + X2) / 2 FinalPt(...") (current)
  • 19:56, 24 April 2017 (diff | hist) . . (+534). . N ReturnMidCurveDist(Created page with " Function ReturnMidCurveDist(CurveObj As Variant) As Double If IsUpdatable(CurveObj) Then Dim TMeas Set TMeas = TheSPAWorkbench.GetMeasurable(CurveObj) Dim TC(...") (current)
  • 19:55, 24 April 2017 (diff | hist) . . (+1,256). . N ReturnFaceCentroid(Created page with " global proc vector ReturnFaceCentroid(string $ObjName, int $FaceNum) { //Author Nick Pisca 0001d 2008 //string $ObjName = "pTorus1"; //string $FaceNum = 30; string $Cu...") (current)
  • 19:55, 24 April 2017 (diff | hist) . . (+2,124). . N ReturnDarkestPath MEL(Created page with " global proc string ReturnDarkestPath(float $U, float $V, float $Rad, int $FanNum, string $SkipStr[], float $SkipRad) { //0001D LLC 2015 Nick Pisca //float $U = 0.896; flo...") (current)
  • 19:55, 24 April 2017 (diff | hist) . . (+367). . N ReturnCOG(Created page with " global proc vector ReturnCOG(vector $V1, vector $V2, vector $V3) { //Author Nick Pisca 0001d 2010 //$V1 = <<0,0,0>>; $V2 = <<1,-1,0>>; $V3 = <<1,0,0>> vector $TempVe...") (current)
  • 19:54, 24 April 2017 (diff | hist) . . (+500). . N ReturnCAValueAS(Created page with " function ReturnCAValue(InputStr) { // ----- Input The Cellular Automata Values HERE: ----- // Main1 = new Array(111, 110, 101, 100, 11, 10, 1, 0); Main2...") (current)
  • 19:54, 24 April 2017 (diff | hist) . . (+614). . N ReturnCAValue(Created page with " global proc int ReturnCAValue(string $InputStr) { // ----- Input The Cellular Automata Values HERE: ----- // int $Main1[7] = {111, 110, 101, 100, 11, 10,...") (current)
  • 19:53, 24 April 2017 (diff | hist) . . (+951). . N ReturnAverageRGBThruPath MEL(Created page with " global proc float ReturnAverageRGBThruPath(float $U1, float $V1, float $U2, float $V2, int $Interval, string $FileName) { //0001D LLC 2015 Nick Pisca //float $U1 = 0.896;...") (current)
  • 19:53, 24 April 2017 (diff | hist) . . (+863). . N ReturnAllObjectsWithinDist(Created page with " Function ReturnAllObjectsWithinDist(CurObj As Variant, ObjSet As HybridBody, WithinDist As Double) As Variant Dim tempArr() ReDim tempArr(0) If IsUpdatable(CurObj) = F...") (current)
  • 19:53, 24 April 2017 (diff | hist) . . (+316). . N Replacing Text in Batch Syntax(Created page with "You may want to replace a portion of a string with a another string. This article may help you in this process. setLocal EnableDelayedExpansion set /p Var4=<trap.txt For...") (current)
  • 19:53, 24 April 2017 (diff | hist) . . (+284). . N RenderWithName(Created page with " global proc RenderWithName(string $CamName, string $ImageName) { setAttr defaultRenderGlobals.imageFilePrefix -type "string" $ImageName; render $CamName; } ''More info...") (current)
  • 19:52, 24 April 2017 (diff | hist) . . (+231). . N Rename by Selection(Created page with " string $troops[] = `ls-sl`; for ( $jj = 0; $jj< size($troops) ; $jj++) { rename $troops[$jj] aab2N; } ''More information on strings and naming, read pages 28-37 in [htt...") (current)
  • 19:52, 24 April 2017 (diff | hist) . . (+390). . N RemoveVectorArrayElement(Created page with " global proc vector[] RemoveVectorArrayElement(vector $CurArr[],int $RemoveIndex) { vector $PR[]; int $PRCounter = 0; for ($p=0;$p<size($CurArr);$p++) { if ($p!=$Remo...") (current)
  • 19:52, 24 April 2017 (diff | hist) . . (+385). . N RemoveStringArrayElement(Created page with " global proc string[] RemoveStringArrayElement(string $CurArr[],int $RemoveIndex) { string $PR[]; int $PRCounter = 0; for ($p=0;$p<size($CurArr);$p++) { if ($p!=$Remo...") (current)
  • 19:51, 24 April 2017 (diff | hist) . . (+278). . N RemoveChars(Created page with " Function RemoveChars(InputStr As String, ArrayOfChars As Variant) As String Dim tempStr As String tempStr = InputStr For X = 0 To UBound(ArrayOfChars) tempStr = Repla...") (current)
  • 19:51, 24 April 2017 (diff | hist) . . (+501). . N Recursion(Created page with " <div align="right">Back to Academic_Archives.</div> __TOC__ ===In Progress=== ===Important Links=== [http://www.idi.ntnu.no/~fredrior/files/Catmull-Clark%201978%20Re...") (current)
  • 19:51, 24 April 2017 (diff | hist) . . (+930). . N RealTokenize MEL(Created page with "''Just a note, the MEL tokenize will split up a string, but it will '''not''' remember empty strings. Empty strings are ignored. My "RealTokenize" subroutine will split any...") (current)
  • 19:50, 24 April 2017 (diff | hist) . . (+1,624). . N Rationalization(Created page with "<div align="right">Back to Academic_Archives.</div> __TOC__ === In Progress === === Pertinent Links === * [http://ocw.mit.edu/NR/rdonlyres/Architecture/4-510Fall-2005...") (current)
  • 19:50, 24 April 2017 (diff | hist) . . (+83). . N Randomize-nullthing(Created page with "http://www.nullthing.com/wp-content/uploads/2008/08/randomize.zip Category:MEL") (current)

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)