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)
  • 19:50, 24 April 2017 (diff | hist) . . (+514). . N RandomMoveArrayOfObjectsinXY(Created page with " global proc RandomMoveArrayOfObjectsinXY(string $NameList[], float $MaxVal) { //Author Nick Pisca 0001d 2009 for ($x=0;$x<size($NameList);$x++) { if (`objExists...") (current)
  • 19:49, 24 April 2017 (diff | hist) . . (+551). . N RandomMoveArrayOfObjects(Created page with " global proc RandomMoveArrayOfObjects(string $NameList[], float $MaxVal) { //Author Nick Pisca 0001d 2008 for ($x=0;$x<size($NameList);$x++) { if (`objExists $NameList[$...") (current)
  • 19:49, 24 April 2017 (diff | hist) . . (+79). . N RanPos+RanSize-nullthing(Created page with "http://www.nullthing.com/wp-content/uploads/2008/08/ranps.zip Category:MEL") (current)
  • 19:49, 24 April 2017 (diff | hist) . . (+188). . N RanColor-nullthing(Created page with "http://www.nullthing.com/wp-content/uploads/2008/06/rancolor.zip ''More information on applying shaders, read pages 128-133 in [http://stores.lulu.com/nickpisca YSYT]. C...") (current)
  • 19:48, 24 April 2017 (diff | hist) . . (+182). . N RanCluster-nullthing(Created page with "http://www.nullthing.com/wp-content/uploads/2008/06/rancluster.zip ''More information on primitives, read pages 43-54 in [http://stores.lulu.com/nickpisca YSYT]. Categor...") (current)
  • 19:48, 24 April 2017 (diff | hist) . . (+199). . N RampShaderRandStripes-nullthing(Created page with "http://www.nullthing.com/wp-content/uploads/2008/01/ramprandstirpes.zip ''More information on working with spheres, read pages 128-133 in [http://stores.lulu.com/nickpisca Y...") (current)
  • 19:48, 24 April 2017 (diff | hist) . . (+302). . N RVB RandOrthVector(Created page with " Public Function RandOrthVector(BasePtArr, MaxRange) Dim XV, YV, ZV, EndArr XV = ((Rnd()*2)-1)*MaxRange + BasePtArr(0) YV = ((Rnd()*2)-1)*MaxRange + BasePtArr(1) ZV = ((Rn...") (current)
  • 19:47, 24 April 2017 (diff | hist) . . (+183). . N RVB LinCong(Created page with " Public Function LinCong() Dim OT, ConstB, ConstM ConstB = 4.1 ConstM = 100 OT = ((RValue*ConstB)+1) Mod ConstM RValue = OT LinCong = OT End Function Category:Rhino...") (current)
  • 19:47, 24 April 2017 (diff | hist) . . (+125). . N Query Current Frame(Created page with " if (_currentframe < 6) { var transVal = (_currentframe)*20; myImageHolder._alpha = transVal; } Category:ActionScript") (current)
  • 19:46, 24 April 2017 (diff | hist) . . (+21,238). . N QHull to Maya Integration-ResearchNodes(Created page with "http://researchnodes.org/doku.php?id=cellularaggregation:qmel.mel // ===================================================================== // Qhull - Maya interoperabilit...") (current)
  • 19:42, 24 April 2017 (diff | hist) . . (+308). . N PrintArrayInLine(Created page with " global proc PrintArrayInLine(string $InputArr[]) { //Author: Nick Pisca 2010 0001d for ($x=0;$x<size($InputArr);$x++) { print ($InputArr[$x] + ", "); } print ("\n"...") (current)
  • 19:41, 24 April 2017 (diff | hist) . . (+1,060). . N Preloader with String Notifications(Created page with " onClipEvent (enterFrame) { var bytes = _root.getBytesTotal(); var bytes_loaded = _root.getBytesLoaded(); pct = Math.round((bytes_loaded/bytes)*100); //in...") (current)
  • 19:41, 24 April 2017 (diff | hist) . . (+566). . N PlacePointOnCurve(Created page with " Function PlacePointOnCurve(CurLine As Variant, StartPt As Variant, CurDist As String, CurSet As HybridBody, CurName As String) As HybridShapePointOnCurve Dim CC As HybridS...") (current)
  • 19:41, 24 April 2017 (diff | hist) . . (+427). . N PlaceLocatorOnPlane MEL(Created page with " global proc string[] PlaceLocatorOnPlane(float $xR, float $yR, string $PlaneName) { //0001D LLC 2015 Nick Pisca vector $xyz = `pointPosition ($PlaneName + ".uv["+($xR)+"]...") (current)
  • 19:40, 24 April 2017 (diff | hist) . . (+659). . N PlaceLineOnPlane MEL(Created page with " global proc string PlaceLineOnPlane(float $x1, float $y1, float $x2, float $y2, string $PlaneName, string $NameStr) { //0001D LLC 2015 Nick Pisca vector $xyz1 = `pointPos...") (current)
  • 19:40, 24 April 2017 (diff | hist) . . (+2,173). . N PlaceImageAndMaterialOnObject(Created page with " string $ImagePath = "C:/Documents and Settings/Nick/My Documents/My Pictures/Image1.jpg"; string $TTArr[1] = PlaceImageAndMaterialOnObject("NP1", "blinn", $ImagePath, "Phon"...") (current)
  • 19:39, 24 April 2017 (diff | hist) . . (+312). . N ParameterFromSubName(Created page with " Function ParameterFromSubName(NameStr As String, ParmsList As Parameters) As Parameter For X = 1 To ParmsList.Count If InStr(ParmsList.Item(X).Name, NameStr) <> 0 Then...") (current)
  • 19:39, 24 April 2017 (diff | hist) . . (+1,331). . N Outside Resources(Created page with "__TOC__ ===Kokkugia=== * [http://www.kokkugia.com/wiki/index.php?title=Main_Page Roland Snooks] [http://www.kokkugia.com/wiki/index.php5?title=KAgent Processing Scripts] =...") (current)
  • 19:39, 24 April 2017 (diff | hist) . . (+3,947). . N OrientObjTwoSurfaces-ctrl-i(Created page with "Direct: http://crtl-i.com/blog/?p=115 Option Explicit ‘by Andrew Kudless | andrew@materialsystems.org | april, 2005 ‘Edited by Howard Jiho Kim | kimjiho@gmail.com |...") (current)
  • 19:38, 24 April 2017 (diff | hist) . . (+573). . N OffMidVector(Created page with " global proc vector OffMidVector(vector $v1, vector $v2, float $RandRange) { //Author Nick Pisca 0001d 2008 vector $MidVec = <<((($v1.x)+($v2.x))/2),((($v1.y)+($v2.y...") (current)
  • 19:37, 24 April 2017 (diff | hist) . . (+8). . N Nptest(Created page with "nptest 2") (current)
  • 19:37, 24 April 2017 (diff | hist) . . (+255). . N Naming Sub-Ds(Created page with " //Author Nick Pisca 0001d 2008 CreateSubdivSphere; string $tempSel[] = `ls-sl`; rename $tempSel[0] "SUBD1"; ''More information of Sub-D naming and manipulation, read pag...") (current)
  • 19:37, 24 April 2017 (diff | hist) . . (+121). . N Naming Soft Bodies(Created page with " //Author Nick Pisca 0001d 2008 string $CSoft[] = `soft -c nurbsTorus1`; rename $CSoft[0] ReplName1; Category:MEL") (current)
  • 19:36, 24 April 2017 (diff | hist) . . (+776). . N MultiRotate(Created page with " Function MultiRotate(Obj1 As Variant, RotCount As Integer, RotAngle As Double, CurSet As HybridBody, NameStr As String) As Variant Dim RotArr() ReDim RotArr(RotCount - 1)...") (current)
  • 19:36, 24 April 2017 (diff | hist) . . (+176). . N Editing Move MC Opposite to Mouse Direction(Created page with " onClipEvent (mouseMove) { xvar = (-1.8)*_root._xmouse + 1350; yvar = (-1.6)*_root._ymouse + 850; this._y = yvar; this._x = xvar; } Category:ActionScript") (current)
  • 19:36, 24 April 2017 (diff | hist) . . (+723). . N MovePointOnCurveCloserToObj(Created page with " Sub MovePointOnCurveCloserToObj(CurvePt As HybridShapePointOnCurve, CompareObj As Variant) Dim CurOri As Boolean CurOri = CurvePt.Orientation Dim OppOri As Boolean OppOri...") (current)
  • 19:35, 24 April 2017 (diff | hist) . . (+721). . N MovePlaneOffsetCloserToObj(Created page with " Sub MovePlaneOffsetCloserToObj(CurvePL As HybridShapePlaneOffset, CompareObj As Variant) Dim CurOri As Boolean CurOri = CurvePL.Orientation Dim OppOri As Boolean OppOri =...") (current)
  • 19:35, 24 April 2017 (diff | hist) . . (+754). . N MoveOffsetCloserToObj(Created page with " Sub MoveOffsetCloserToObj(OffsetSurf As HybridShapeOffset, CompareObj As Variant) Dim CurOri As Boolean CurOri = OffsetSurf.OffsetDirection '.InvertDirection Dim OppO...") (current)
  • 19:35, 24 April 2017 (diff | hist) . . (+892). . N MoveOffsetCloserToCoord(Created page with " Sub MoveOffsetCloserToCoord(CurvePar As HybridShapeOffset, XVal As Double, YVal As Double, ZVal As Double) MyPart.UpdateObject CurvePar Dim CMeas Set CMeas = TheSPAWorkben...") (current)
  • 19:34, 24 April 2017 (diff | hist) . . (+987). . N MoveLineTangencyCloserToCoord(Created page with " Sub MoveLineTangencyCloserToCoord(CurvePar As HybridShapeLineTangency, XVal As Double, YVal As Double, ZVal As Double) Dim CurOri Dim OppOri CurOri = CurvePar.Orientation...") (current)

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