User contributions

Jump to: navigation, search
Search for contributions
 
 
     
 
   

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

  • 07:09, 22 April 2017 (diff | hist) . . (+1,036). . N KeepTrimOrientation(Created page with " Function KeepTrimOrientation(TrimObj As HybridShapeTrim, nthSmallest As Integer) As Boolean Dim UVal As Integer Dim VVal As Integer UVal = -1 Dim WinningArr(3) Dim Winni...")
  • 07:08, 22 April 2017 (diff | hist) . . (+647). . N KeepSplitByArea(Created page with " Sub KeepSplitByArea(SplitSurface As Variant, ForSmaller0ForBigger1 as Integer) Dim Pt1Meas 'As Measurable Set Pt1Meas = thespaworkbench.GetMeasurable(SplitSurface) Dim AAr...") (current)
  • 07:08, 22 April 2017 (diff | hist) . . (+1,423). . N KeepSolidSplitByVolumeInPart(Created page with " Sub KeepSolidSplitByVolumeInPart(SplitSolid As Split, ForSmaller0ForBigger1 As Integer, CurPart As Part) Dim Ori Ori = SplitSolid.SplittingSide Dim OppOri OppOri = Not Sp...") (current)
  • 07:08, 22 April 2017 (diff | hist) . . (+943). . N KeepSolidSplitByVolume(Created page with " Sub KeepSolidSplitByVolume(SplitSolid As Split, ForSmaller0ForBigger1 As Integer) If IsUpdatable(SplitSolid) Then Dim Pt1Meas Set Pt1Meas = TheSPAWorkbench.Get...") (current)
  • 07:08, 22 April 2017 (diff | hist) . . (+541). . N KeepSolidSplitByIntersection(Created page with " Sub KeepSolidSplitByIntersection(SplitSolid As Split, CompareObj As Variant) Dim Ori Ori = SplitSolid.SplittingSide Dim OppOri OppOri = Not SplitSolid.SplittingSide I...") (current)
  • 07:07, 22 April 2017 (diff | hist) . . (+478). . N KeepSmallestSplit(Created page with " Sub KeepSmallestSplit(SplitSurface As Variant) Dim Pt1Meas 'As Measurable Set Pt1Meas = thespaworkbench.GetMeasurable(SplitSurface) Dim AArea As Double AArea = Pt1Meas.Ar...") (current)
  • 07:07, 22 April 2017 (diff | hist) . . (+712). . N KeepSmallerCurvePar(Created page with " Sub KeepSmallerCurvePar(CurvePar As HybridShapeCurvePar) If IsUpdatable(CurvePar) Then Dim CMeas Set CMeas = TheSPAWorkbench.GetMeasurable(CurvePar) Dim F...") (current)
  • 07:07, 22 April 2017 (diff | hist) . . (+758). . N KeepInsideBox(Created page with " global proc string KeepInsideBox(string $ObjName, float $BBMin[], float $BBMax[]) { //Author Nick Pisca 0001d 2010 //string $ObjName = "nurbsSphere1"; float $BBMax[] = {1...") (current)
  • 07:06, 22 April 2017 (diff | hist) . . (+785). . N KeepHighestLevel(Created page with " Sub KeepHighestLevel(LevelPlane As HybridShapePlaneOffset, TestPtObj As Variant) If IsUpdatable(LevelPlane) And IsUpdatable(TestPtObj) Then Dim OrigOri As Integer...") (current)
  • 07:06, 22 April 2017 (diff | hist) . . (+654). . N KeepCurveSplitByLength(Created page with " Sub KeepLongestSplit(InputSpl As HybridShapeSplit, ForSmaller0ForBigger1 As Integer) MyPart.UpdateObject InputSpl Dim HMeas Set HMeas = theSPAWorkbench.GetMeasurable(Input...") (current)
  • 07:06, 22 April 2017 (diff | hist) . . (+476). . N KeepBiggestSplit(Created page with " Sub KeepBiggestSplit(SplitSurface As Variant) Dim Pt1Meas 'As Measurable Set Pt1Meas = TheSPAWorkbench.GetMeasurable(SplitSurface) Dim AArea As Double AArea = Pt1Meas.Ar...") (current)
  • 07:05, 22 April 2017 (diff | hist) . . (+579). . N IsWithinDist(Created page with " global proc int IsWithinDist(string $Obj1, string $Obj2, float $Dist) { //Author Nick Pisca 0001d 2009 float $B1[] = `getAttr($Obj1+".translate")`; vector $B1Vec...") (current)
  • 07:05, 22 April 2017 (diff | hist) . . (+676). . N IsWithDistByString MEL(Created page with " global proc int IsWithDistByString(string $SkipStrArr[], vector $TestVec, float $Rad) { //0001D LLC 2015 Nick Pisca //string $SkipStrArr[] = {"0.888,0.777","0.555,0.6"};...") (current)
  • 07:05, 22 April 2017 (diff | hist) . . (+735). . N IsVectorInArrayWithinDistance(Created page with " vector $TTArr[]; $TTArr[0] = <<2,3,22>>; $TTArr[1] = <<2,-3,22>>; $TTArr[2] = <<-2,3,22>>; vector $MArr = <<22,23,22>>; int $HHH = IsVectorInArrayWithinRange($MArr, $TTA...") (current)
  • 07:04, 22 April 2017 (diff | hist) . . (+839). . N IsVectorInArray(Created page with " vector $TTArr[]; $TTArr[0] = <<2,3,22>>; $TTArr[1] = <<2,-3,22>>; $TTArr[2] = <<-2,3,22>>; vector $MArr = <<2,3,22>>; int $HHH = IsVectorInArray($MArr, $TTArr); globa...") (current)
  • 07:04, 22 April 2017 (diff | hist) . . (+243). . N IsUpdatableInPart(Created page with " Function IsUpdatableInPart(InputObj As Variant, CurPart As Part) As Boolean On Error GoTo blast CurPart.UpdateObject InputObj IsUpdatableInPart= True Exit Function blast...") (current)
  • 07:04, 22 April 2017 (diff | hist) . . (+211). . N IsUpdatable(Created page with " Function IsUpdatable(InputObj As Variant) As Boolean On Error GoTo Blast2 MyPart.UpdateObject InputObj IsUpdatable = True Exit Function Blast2: IsUpdatable = False End...") (current)
  • 07:03, 22 April 2017 (diff | hist) . . (+552). . N IsSurfaceAbove(Created page with " Function IsSurfaceAbove(BottomObj As Variant, TopObj As Variant) As Boolean If IsUpdatable(BottomObj) = False Or IsUpdatable(TopObj) = False Then IsSurfaceAbove...") (current)
  • 07:03, 22 April 2017 (diff | hist) . . (+202). . N IsSpace(Created page with " Function IsSpace(Obj1 As Variant) As Boolean On Error GoTo Blast Dim HHH As ArcSpace Set HHH = Obj1 IsSpace = True Exit Function Blast: IsSpace = False End Function...") (current)
  • 07:03, 22 April 2017 (diff | hist) . . (+272). . N IsSmartUpdatable(Created page with " Function IsSmartUpdatable(InputObj As Variant) As Boolean On Error GoTo blast Set CurPart = GetContainingPart(InputObj) CurPart.UpdateObject InputObj IsSmartUpdatable...") (current)
  • 07:02, 22 April 2017 (diff | hist) . . (+244). . N IsProductDocument(Created page with " Function IsProductDocument(CurObj As Variant) As Boolean On Error GoTo Blast Dim CurPD As ProductDocument Set CurPD = CurObj IsProductDocument = True Exit Function Blas...") (current)
  • 07:02, 22 April 2017 (diff | hist) . . (+751). . N IsProductActive(Created page with " Function IsProductActive() As Boolean OPArr = StrangeComponent("Part", "TESTCASE1", CATIA.ActiveDocument.Product.Products, CATIA.ActiveDocument.Product) Set Outp...") (current)
  • 07:02, 22 April 2017 (diff | hist) . . (+235). . N IsPlanar(Created page with " Function IsPlanar(InputObj As Variant) As Boolean Dim CM Set CM = TheSPAWorkbench.GetMeasurable(InputObj) If CM.GeometryName = 7 Then IsPlanar = True Else IsPla...") (current)
  • 07:02, 22 April 2017 (diff | hist) . . (+232). . N IsPartDocument(Created page with " Function IsPartDocument(CurObj As Variant) As Boolean On Error GoTo Blast Dim CurPD As PartDocument Set CurPD = CurObj IsPartDocument = True Exit Function Blast: IsPar...") (current)
  • 07:01, 22 April 2017 (diff | hist) . . (+583). . N IsObjInSetWithinDist(Created page with " Function IsObjInSetWithinDist(STRUCTSet As HybridBody, CompareObj As Variant, DistVal As Double) As Boolean Dim MEMCounter As Integer MEMCounter = 1 Dim TMeas Set TMeas =...") (current)
  • 07:01, 22 April 2017 (diff | hist) . . (+210). . N IsNumber(Created page with " Function IsNumber(ValueObj As String) As Boolean On Error GoTo Blast Dim HHH As Double HHH = CDbl(ValueObj) IsNumber = True Exit Function Blast: IsNumber = False End...") (current)
  • 07:00, 22 April 2017 (diff | hist) . . (+622). . N IsMidPtCoordToFarFromCurve(Created page with " Function IsMidPtCoordToFarFromCurve(Pt1 As Variant, Pt2 As Variant, CCurve As Variant, MaxDist As Double, ConstSet As HybridBody) As Boolean Dim MidPt As HybridShapePointB...") (current)
  • 07:00, 22 April 2017 (diff | hist) . . (+636). . N IsIntersectionResultCurve(Created page with " Function IsIntersectionResultCurve(Obj1 As Variant, Obj2 As Variant, ConstSet As HybridBody) As Boolean On Error GoTo Blast If CheckIntersection(Obj1, Obj2, MyPart, M...") (current)
  • 06:59, 22 April 2017 (diff | hist) . . (+456). . N IsIntInArray MEL(Created page with " global proc int IsIntInArray(int $ObjNum, int $Arr1[]) { //Nick Pisca 2011, 0001d //int $ObjNum = 5; int $Arr1[] = {99,2,1,4}; int $Boo = 0; int $x = 0;...") (current)
  • 06:59, 22 April 2017 (diff | hist) . . (+433). . N IsInStrArr MEL(Created page with " global proc int IsInStrArr(string $Str[], string $CompareStr) { //0001D LLC 2015 Nick Pisca //string $Str[] = {"dd","ee","FF"}; string $CompareStr = "ee"; //IsInStrArr(...") (current)
  • 06:59, 22 April 2017 (diff | hist) . . (+293). . N IsInIntArray MEL(Created page with " global proc int IsInIntArray(int $IntArr[], int $IntNum) { for ($x=0;$x<size($IntArr);$x++) { if ($IntArr[$x] == $IntNum) { return 1; } } return 0; } ''Mo...") (current)
  • 06:58, 22 April 2017 (diff | hist) . . (+568). . N IsCurveAbove(Created page with " Function IsCurveAbove(BottomObj As Variant, TopObj As Variant) As Boolean If IsUpdatable(BottomObj) = False Or IsUpdatable(TopObj) = False Then IsCurveAbove =...") (current)
  • 06:58, 22 April 2017 (diff | hist) . . (+316). . N IsConvertibleToNumber(Created page with " Function IsConvertibleToNumber(InputStr As Variant) As Boolean On Error GoTo Blast HHH = CDbl(InputStr) If InputStr = "" Then IsConvertibleToNumber = False Exit...") (current)
  • 06:58, 22 April 2017 (diff | hist) . . (+221). . N IsAppOpen(Created page with " Function IsAppOpen(AppName As String) As Boolean On Error GoTo Blast Set MyApp = GetObject(, AppName & ".Application") IsAppOpen = True Exit Function Blast: IsAppOpen =...") (current)
  • 06:58, 22 April 2017 (diff | hist) . . (+195). . N Is64Bit(Created page with " Function Is64Bit() As Boolean If InStr(CATIA.SystemConfiguration.OperatingSystem, "64") <> 0 Then Is64Bit = True Else Is64Bit = False End If End Function Ca...") (current)
  • 06:57, 22 April 2017 (diff | hist) . . (+88). . N Incidence Angle from Polygons-ResearchNodes(Created page with "http://researchnodes.org/doku.php?id=examples:incidenceanglespoly.mel Category:MEL") (current)
  • 06:56, 22 April 2017 (diff | hist) . . (+7). . N In-House MEL(Created page with "Test...") (current)
  • 06:56, 22 April 2017 (diff | hist) . . (+617). . N ImmediateAnnotation(Created page with " Sub ImmediateAnnotation(PointObj As HybridShape, TextStr As String) Dim PtMeas Dim Ccoords() ReDim Ccoords(2) Set PtMeas = theSPAWorkbench.GetMeasurable(P...") (current)
  • 06:18, 22 April 2017 (diff | hist) . . (0). . N File:LASERNOTCHIMAGE05.png(current)
  • 06:17, 22 April 2017 (diff | hist) . . (0). . N File:LASERNOTCHIMAGE04.png(current)
  • 06:17, 22 April 2017 (diff | hist) . . (0). . N File:LASERNOTCHIMAGE03.png(current)
  • 06:17, 22 April 2017 (diff | hist) . . (0). . N File:LASERNOTCHIMAGE02.png(current)
  • 06:17, 22 April 2017 (diff | hist) . . (0). . N File:LASERNOTCHIMAGE01.png(current)
  • 06:17, 22 April 2017 (diff | hist) . . (0). . N File:ExcelCA04.PNG(current)
  • 06:17, 22 April 2017 (diff | hist) . . (0). . N File:ExcelCA03.PNG(current)
  • 06:16, 22 April 2017 (diff | hist) . . (0). . N File:ExcelCA02.PNG(current)
  • 06:16, 22 April 2017 (diff | hist) . . (0). . N File:ExcelCA01.PNG(current)
  • 06:15, 22 April 2017 (diff | hist) . . (+158). . N File:SphereModel07sfw.jpg(Totally awesome Spheriolithography technique for vrml format. Rendering in Maya SW. Generation scripting MEL. Author Nick Pisca 2009. http://www.nickpisca.com) (current)
  • 06:13, 22 April 2017 (diff | hist) . . (+89). . N File:RampModel04sfw.jpg(Multi Rampshader automation on several NURBS closed surfaces. MEL scripted by Nick Pisca.) (current)
  • 06:09, 22 April 2017 (diff | hist) . . (+394). . N Image Gallery(Created page with "thumb|400px|MEL scripted cellular 3D Print vrml color Spheriolithography technique pioneered by Nick Pisca. Image:N005sfw.jpg|thumb|400px|MEL...")
  • 06:08, 22 April 2017 (diff | hist) . . (+276). . N HybridShapeExistsInHybridBody(Created page with " Function HybridShapeExistsInHybridBody(InputStr As String, CurSet as HybridBody) As Boolean On Error GoTo blast Set HHH = CurSet.HybridShapes.Item(InputStr) HybridShapeExi...") (current)
  • 06:07, 22 April 2017 (diff | hist) . . (+242). . N HybridShapeExists(Created page with " Function HybridShapeExists(InputStr As String) As Boolean On Error GoTo blast Set HHH = CurSet.HybridShapes.Item(InputStr) HybridShapeExists = True Exit Function blast:...") (current)
  • 06:07, 22 April 2017 (diff | hist) . . (+2,501). . N Honeycomb Panels 03-madeincalifornia(Created page with "'Direct: http://madeincalifornia.blogspot.com/2009/01/honeycomb-panels-03.html Option Explicit ' Author: Milutin Cerovic 2009 ' www.4ofseven.com ' adapted:http://www.ma...") (current)
  • 06:06, 22 April 2017 (diff | hist) . . (+704). . N History(Created page with "<div align="right">Back to Academic_Archives.</div> __TOC__ == Graphic User Interface == === Papers === * [http://www.cl.cam.ac.uk/techreports/UCAM-CL-TR-574.pdf Ivan S...") (current)
  • 06:06, 22 April 2017 (diff | hist) . . (+340). . N HasVolume(Created page with " Function HasVolume(InputBody As Variant, CurPart As Part) As Boolean On Error GoTo Blast2 Dim CMEAS Set CMEAS = theSPAWorkbench.GetMeasurable(CurPart.CreateReferenceFromOb...") (current)
  • 06:06, 22 April 2017 (diff | hist) . . (+297). . N HasRadius(Created page with " Function HasRadius(InputCrv As Variant) As Double On Error GoTo blast Dim PtMeas Dim RadiusVal As Double Set PtMeas = TheSPAWorkbench.GetMeasurable(InputCrv) RadiusVa...") (current)
  • 06:05, 22 April 2017 (diff | hist) . . (+214). . N HasParent(Created page with " Function HasParent(CurObj As Variant) As Boolean On Error GoTo Blast Dim NAParent Set NAParent = CurObj.Parent HasParent = True Exit Function Blast: HasParent = False...") (current)
  • 06:05, 22 April 2017 (diff | hist) . . (+406). . N HasPackage(Created page with " 'Dim PkgManager 'Set PkgManager = MyPart.GetItem("GTCAttPkgManagerVBExt") Function HasPackage(InputObj As Variant) As Boolean On Error GoTo Blast Dim pkgs As AttPackage...") (current)
  • 06:05, 22 April 2017 (diff | hist) . . (+214). . N HasHOffset(Created page with " Function HasHOffset(BeamBeam As Variant) As Boolean On Error GoTo Blast Dim HS HS = BeamBeam.HOffset.Value HasHOffset = True Exit Function Blast: HasHOffset = False E...") (current)
  • 06:04, 22 April 2017 (diff | hist) . . (+258). . N HasCOG(Created page with " Function HasCOG(PointObj As Variant) As Boolean On Error GoTo Blast Dim MMeas Set MMeas = TheSPAWorkbench.GetMeasurable(PointObj) Dim MM(2) MMeas.GetCOG MM HasCOG = Tru...") (current)
  • 06:04, 22 April 2017 (diff | hist) . . (+282). . N HasArea(Created page with " Function HasArea(InputSurf As Variant) As Boolean On Error GoTo Blast2 Dim CMEAS Set CMEAS = TheSPAWorkbench.GetMeasurable(InputSurf) Dim AreaCalc As Double AreaCalc = C...") (current)
  • 06:04, 22 April 2017 (diff | hist) . . (+289). . N HasAngleBetween(Created page with " Function HasAngleBetween(Obj1 As Variant, Obj2 As Variant) As Double On Error GoTo Blast Set C2 = TheSPAWorkbench.GetMeasurable(Obj1) AngleVal = C2.GetAngleBetween(Obj2)...") (current)
  • 06:03, 22 April 2017 (diff | hist) . . (+113). . N Get Curve Intersection Coordinates-ResearchNodes(Created page with "http://researchnodes.org/doku.php?id=cellularaggregation:getcurveintersectioncoordinates.mel Category:MEL") (current)
  • 06:03, 22 April 2017 (diff | hist) . . (+185). . N GetYIntercept(Created page with " Function GetYIntercept(X1 As Variant, X2 As Variant, Y1 As Variant, Y2 As Variant) As Double GetYIntercept = Y1 - (X1 * (Y1 - Y2) / (X1 - X2)) End Function Category:CAT...") (current)
  • 06:03, 22 April 2017 (diff | hist) . . (+368). . N GetXYZFromPoint(Created page with " Function GetXYZFromPoint(InputPt As Variant) As Variant Dim SArr() ReDim SArr(2) If IsUpdatable(InputPt) Then Dim CMeas Set CMeas = TheSPAWorkbench.GetMeasurable...") (current)
  • 06:02, 22 April 2017 (diff | hist) . . (+836). . N GetXYZFromArray(Created page with " Function GetXYZFromArray(PtArr As Variant, XVal As Double, YVal As Double, ZVal As Double, Closest1Farthest0 As Integer) As Integer Dim WinningVal As Double If Closest1Fart...") (current)
  • 06:02, 22 April 2017 (diff | hist) . . (+494). . N GetTopLineTXTFile(Created page with " int $YYY = GetTopLineTXTFile("c:\\mayacount.txt"); global proc int GetTopLineTXTFile(string $Path) { //Nick Pisca 0001d, string $Path = "c:\\mayacount.txt"; string...") (current)
  • 06:01, 22 April 2017 (diff | hist) . . (+1,033). . N GetThreeClosestObjsFromArray(Created page with " global proc string[] GetThreeClosestObjsFromArray(string $MainObj, string $OtherArr[] ) { //Author Nick Pisca 0001d 2009 string $ClosestArr[2]; float $ClosestDis...") (current)
  • 06:01, 22 April 2017 (diff | hist) . . (+3,981). . N GetTechnologicalObject Parameters(Created page with " AnnotatedViews <br> ArrangementProduct <br> AssemblyFeatures <br> CATAnnotationSets <br> ClashResults <br> Clashes <br> DMUReviews <br> Distances <br> Groups <br> HumanWorkbe...") (current)
  • 06:01, 22 April 2017 (diff | hist) . . (+414). . N GetSubstitutedMaterial(Created page with " proc string GetSubstitutedMaterial(string $Name){ //Author Nick Pisca 0001d 2007 string $FF[] = `listRelatives $Name`; string $GG[] = `listConnections $FF[0]`; string $HH...") (current)
  • 06:00, 22 April 2017 (diff | hist) . . (+163). . N GetSlope(Created page with " Function GetSlope(X1 As Variant, X2 As Variant, Y1 As Variant, Y2 As Variant) As Double GetSlope = (Y1 - Y2) / (X1 - X2) End Function Category:CATIA DP VB") (current)
  • 06:00, 22 April 2017 (diff | hist) . . (+2,562). . N GetRGBGrid MEL(Created page with " global proc string[] GetRGBGrid(string $FileName, int $xMax, int $yMax ) { //0001D LLC 2015 Nick Pisca //int $xMax = 5; int $yMax = 6; string $FileName = "file1"; //eva...") (current)
  • 05:59, 22 April 2017 (diff | hist) . . (+1,483). . N GetPolygonFaceArea MEL(Created page with " global proc float getPolygonFaceArea( string $mesh, int $face ) { float $area = 0; select -r ($mesh+".f["+$face+"]"); string $vertIndicesStr[] = `polyInfo -fv`; strin...") (current)
  • 05:59, 22 April 2017 (diff | hist) . . (+939). . N GetPolyTriangleArea MEL(Created page with " global proc float getPolyTriangleArea( string $mesh, string $vertIndices[] ) { vector $verts[3]; string $transform[] = `listRelatives -p $mesh`; float $transformMatrix[...") (current)
  • 05:59, 22 April 2017 (diff | hist) . . (+356). . N GetPartFromName(Created page with " Function GetPartFromName(InputStr As String) As Part For X = 1 To CATIA.Documents.Count If TypeName(CATIA.Documents.Item(X)) = "PartDocument" Then If CATIA.Doc...") (current)
  • 05:59, 22 April 2017 (diff | hist) . . (+745). . N GetNormalAtVTX MEL(Created page with " global proc vector getNormalAtVTX(int $InputCVNum, string $ObjName) { // Nick Pisca 2011, 0001d // NOTE: this isn't really accurate, but works for quick solutions. //...") (current)
  • 05:58, 22 April 2017 (diff | hist) . . (+1,078). . N GetNClosestObjsFromArray(Created page with " global proc string[] GetNClosestObjsFromArray(string $MainObj, string $OtherArr[], int $NCount) { //Author Nick Pisca 0001d 2009 string $ClosestArr[]; float $Clos...") (current)
  • 05:58, 22 April 2017 (diff | hist) . . (+593). . N GetMinimumDistanceAtLineEndPts(Created page with " Function GetMinimumDistanceAtLineEndPts(Line1 As Variant, Line2 As Variant) As Double IsUpdatable Line1 IsUpdatable Line2 Dim L1Meas Set L1Meas = TheSPAWorkbench.GetMeasu...") (current)
  • 05:58, 22 April 2017 (diff | hist) . . (+1,121). . N GetMayaRAMUsageXPHome(Created page with " global proc float GetMayaRAMUsageXPHome() { //Author Nick Pisca 0001d 2010, float $Ram1 = GetMayaRAMUsageXPHome(); string $TLbuffer[]; string $TL = `system ("c:\\pslist.ex...") (current)
  • 05:58, 22 April 2017 (diff | hist) . . (+748). . N GetMayaRAMUsage(Created page with " float $Ram1 = GetMayaRAMUsage(); //Note, this tool only works on Windows XP Pro and newer. Windows XP Home may not run this. global proc float GetMayaRAMUsage() { //Aut...") (current)
  • 05:57, 22 April 2017 (diff | hist) . . (+1,461). . N GetMaxProjDistance(Created page with " Function GetMaxProjDistance(CrvObj1 As Variant, Obj2 As Variant, IntervalDist As Double, ConstSet As HybridBody) As Double Dim Floater As HybridShapePointOnCurve Set Floate...") (current)
  • 05:57, 22 April 2017 (diff | hist) . . (+350). . N GetMaterial(Created page with " global proc string getMaterial(string $ObjName) { //Author Nick Pisca 0001d 2006 string $LH[] = `listHistory $ObjName`; string $LC[] = `listConnections $LH[0]`; string $L...") (current)
  • 05:57, 22 April 2017 (diff | hist) . . (+405). . N GetInitialMaterial(Created page with " proc string GetInitialMaterial(string $Name){ //Author Nick Pisca 0001d 2006 string $FF[] = `listRelatives $Name`; string $GG[] = `listConnections $FF[0]`; string $HH[] =...") (current)
  • 05:56, 22 April 2017 (diff | hist) . . (+448). . N GetFirstInstanceInExcel(Created page with " Function GetFirstInstanceInExcel(InputVal As String, ColumnNo As Integer, EndRow As Integer) As Integer Dim LCounter As Integer LCounter = 2 While LCounter <= EndRow...") (current)
  • 05:56, 22 April 2017 (diff | hist) . . (+443). . N GetDistanceBetwTwoVectors(Created page with " global proc float GetDistanceBetwTwoVectors(vector $V1, vector $V2) { //Author Nick Pisca 0001d 2010 //vector $V1 = <<0,22,1>>; vector $V2 = <<22,0,0>>; vector $DDiff =...") (current)
  • 05:56, 22 April 2017 (diff | hist) . . (+537). . N GetDistanceBetwTwoArrays(Created page with " global proc float GetDistanceBetwTwoArrays(float $A1[], float $A2[]) { //Author Nick Pisca 0001d 2010 //float $A1[] = {0,22,1}; float $A2[] = {22,0,0}; vector $A1vec =...") (current)
  • 05:56, 22 April 2017 (diff | hist) . . (+1,224). . N GetDistBetwTwoCurves MEL(Created page with " global proc float GetDistBetwTwoCurves(string $InputCrv, string $InputCrv2, float $Divs) { //Wing, Eric, Nick 2010 //string $InputCrv = "transform95"; string $Input...") (current)
  • 05:55, 22 April 2017 (diff | hist) . . (+1,141). . N GetDistBetwPointsByVectorDirection MEL(Created page with " global proc float getDistBetwPointsByVectorDirection(vector $p1, vector $p2, vector $n) { //0001D LLC (c) Nick Pisca 2015 //vector $p1 = <<1,3,4>>; vector $p2 = <<-2,0,5>...") (current)
  • 05:55, 22 April 2017 (diff | hist) . . (+876). . N GetDarkestVector MEL(Created page with " global proc vector GetDarkestVector(vector $CurPos, float $Rad, int $NumTests, string $File) { //0001D LLC 2015 Nick Pisca //vector $CurPos = <<0.1,0.1,0.0>>; float $Rad =...") (current)
  • 05:42, 22 April 2017 (diff | hist) . . (+638). . N GetDarkestIndices MEL(Created page with " global proc int[] GetDarkestIndices(string $RGBMat[]) { //0001D LLC 2015 Nick Pisca //string $RGBMat[] = $WZ; int $indexNums[1] = {0,0}; int $XEndCt = size($RGBMat);...") (current)
  • 05:42, 22 April 2017 (diff | hist) . . (+447). . N GetCurveLength MEL(Created page with " global proc float GetCurveLength(string $InputCrv) { //Wing, Eric, Nick 2010 //string $InputCrv = "transform82"; float $LenDim; string $SNode[] = `lis...") (current)
  • 05:42, 22 April 2017 (diff | hist) . . (+631). . N GetCurveLength-ctrl-i(Created page with "Direct: http://crtl-i.com/blog/?p=16 proc float getCurveLength( string $curve ) { string $arcLenNode = `createNode arcLengthDimension`; connectAttr -f ( $curve + “.wor...") (current)
  • 05:42, 22 April 2017 (diff | hist) . . (+1,062). . N GetConnectingVTXs MEL(Created page with " global proc string[] getConnectingVTXs(int $InputCVNum, string $ObjName) { // Nick Pisca 2011 0001d //int $InputCVNum = 1; //string $ObjName = "Sample_DSF_mesh...") (current)
  • 05:41, 22 April 2017 (diff | hist) . . (+2,402). . N GetClosestIndices MEL(Created page with " global proc int[] GetClosestIndices(string $RGBMat[], int $CurInt[], string $Skip[], int $All0NeighborNum, string $PlaneName, int $XDivs, int $YDivs) { //0001D LLC 2...") (current)
  • 05:41, 22 April 2017 (diff | hist) . . (+577). . N GetClosestIndex MEL(Created page with " global proc int GetClosestIndex(string $LocArr[], vector $XYZArr[], vector $CurVec, int $Skip[]) { //0001D LLC 2015 Nick Pisca float $WinDist = 1000000.0; int $WinInt =...") (current)
  • 05:40, 22 April 2017 (diff | hist) . . (+1,583). . N GetClosestCVOnCurveToVectorWithinZPlane MEL(Created page with " global proc int GetClosestCVOnCurveToVectorWithinZPlane(vector $V1, string $Crv1, float $ZDev) { //vector $V1 = <<25666.759821, 10518.81918, 1000>>;...") (current)
  • 05:40, 22 April 2017 (diff | hist) . . (+684). . N GetCOGFromNurbsNameSearchString(Created page with " global proc vector GetCOGFromNurbsNameSearchString(string $SearchStr) { //Author Nick Pisca 0001d 2010 //string $SearchStr = "nurbsS*"; //GetCOGFromNurbsNameSearchStrin...") (current)
  • 05:39, 22 April 2017 (diff | hist) . . (+755). . N GetCOGFromArray(Created page with " Function GetCOGFromArray(ObjArr As Variant) As Variant Dim TotArr(2) Dim TotCounter As Integer TotCounter = 0 For X = 0 To UBound(ObjArr) If IsEmpty(ObjArr(X)) = Fal...") (current)
  • 05:39, 22 April 2017 (diff | hist) . . (+369). . N GetBiggestFloatIndex(Created page with " global proc int GetBiggestFloatIndex(float $FLArr[]) { //Author Nick Pisca 0001d 2008 float $KL[] = sort($FLArr); float $Biggest = $KL[(size($KL)-1)]; for($x=0;$x<size...") (current)
  • 05:39, 22 April 2017 (diff | hist) . . (+767). . N GetAngleBetween(Created page with " Function GetAngleBetween(PtAx As Variant, PtAy As Variant, PtAz As Variant, PtBx As Variant, PtBy As Variant, PtBz As Variant, PtCx As Variant, PtCy As Variant, PtCz As Varia...") (current)

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