#modelreference
October 18, 2024 at 1:11 AM
@helalight3.bsky.social in this friday ❤️❤️❤️🌹🌹🌹🌹

Please support my work 🙏🏻😊
#nudeart #sensuality #modelreference
June 12, 2026 at 3:09 PM
Horse fiz quatro diferentes bom exercício,fazer inverso e vai dar um 360 completo, vai servir de referencia
#referenciamodelo #wilsonnerarefe #modelReference #referencemodel
December 16, 2024 at 3:07 PM
More work done on my model reference~ ouo

#vtuber #pngtuber #vtubermodel #modelreference #digitalart #workinprogress
November 20, 2024 at 10:23 PM
Fiz um de teste usando os oc Elfhorse e Horchorse
#referenciamodelo

#wilsonnerarefe

#modelReference

#referencemodel
December 17, 2024 at 5:49 AM
New reference currently proceeding apace~

#vtuber #pngtuber #modelreference #workinprogress
December 5, 2024 at 12:27 AM
October 11, 2024 at 9:11 PM
Some warm-up exercises based on real models. Never stop learning Art!

#sketchbook #inks #artexercise #reference #modelreference
October 10, 2024 at 8:32 PM
🚀 Bruger du fyringsolie nu og overvejer at skifte til B30, B55 eller B100 (#HVO) biobrændstof? #Suntec pumper er klar til den bæredygtige omstilling. For at kontrollere din pumpes kompatibilitet skal du blot kigge efter bogstavet “V” i din modelreference. arnenielsen.dk/2025/09/17/a...
September 17, 2025 at 1:55 PM
It only takes one light to shatter the darkness
📸 Sienna Hambleton
#artmodel #model #modelreference #blackandwhite
January 24, 2026 at 1:40 PM
Drawing creation for each Part
Hi All, I want to create two views for each part in this code but i dont know how to use document as a component occurences Sub main Dim modelReference As Document = ThisApplication.ActiveDocument CreateSheet() ShowPanelParts(modelReference) End Sub Sub CreateSheet ' Set the path to the template file Dim templatePath As String = "C:\_VaultPro\Templates\MKT DESIGN TEMPLATE.dwg" Dim oDoc As DrawingDocument = ThisApplication.Documents.Add(DocumentTypeEnum.kDrawingDocumentObject, templatePath) Dim oSheet As Sheet = oDoc.Sheets(1) ' Display message MessageBox.Show("Drawing created successfully from the template!") End Sub Sub ShowPanelParts(modelReference As Document) ' Check if the document is an assembly If modelReference.DocumentType = DocumentTypeEnum.kAssemblyDocumentObject Then ' Get the assembly document Dim oAsmDoc As AssemblyDocument = modelReference ' Create a collection to store unique part names (without "LEFT" or "RIGHT") Dim uniqueParts As New Collection() ' Loop through all the components in the assembly For Each oComp As ComponentOccurrence In oAsmDoc.ComponentDefinition.Occurrences ' Skip suppressed parts If oComp.Suppressed = False Then ' Check if the component name contains "PANEL" (case-sensitive, all uppercase) If InStr(oComp.Name, "PANEL") > 0 Then ' Remove "LEFT" and "RIGHT" from the name to treat them as one part Dim partName As String = oComp.Name.ToUpper() ' Remove "LEFT" or "RIGHT" from the name partName = Replace(partName, " LEFT", "") partName = Replace(partName, " RIGHT", "") ' Check if the part name already exists in the unique parts collection Dim isDuplicate As Boolean = False For Each uniquePart As String In uniqueParts If uniquePart = partName Then isDuplicate = True Exit For End If Next ' If it's not a duplicate, add it to the collection and show the message If Not isDuplicate Then uniqueParts.Add(partName) ' CreateViews(oComp) MessageBox.Show("Found part: " & oComp.Name) CreateViews(oComp) End If End If End If Next Else MessageBox.Show("The active document is not an assembly.") End If End Sub '*** Define Scale Sub CreateViews(oComp As ComponentOccurrence) ' Scale for the views Dim scale As Double = 1 / 3 ' Get Active Drawing Sheet Dim oDoc As DrawingDocument = ThisApplication.ActiveDocument Dim oSheet As Sheet = oDoc.ActiveSheet DeleteAllViews(oSheet) ' Define View Locations Dim sheetCenterVertical As Double = (oSheet.Height / 2) Dim isoViewHorizontal As Double = (oSheet.Width * 0.25) Dim frontViewHorizontal As Double = (oSheet.Width * 0.75) ' Create Points for View Locations Dim oIsoViewPoint As Point2d = ThisApplication.TransientGeometry.CreatePoint2d(isoViewHorizontal, sheetCenterVertical) Dim oFrontViewPoint As Point2d = ThisApplication.TransientGeometry.CreatePoint2d(frontViewHorizontal, sheetCenterVertical) ' Define View Orientation Dim isoViewOrientation As ViewOrientationTypeEnum = kIsoTopRightViewOrientation Dim frontViewOrientation As ViewOrientationTypeEnum = kFrontViewOrientation ' Define View Style Dim isoViewStyle As DrawingViewStyleEnum = kShadedDrawingViewStyle Dim frontViewStyle As DrawingViewStyleEnum = kHiddenLineRemovedDrawingViewStyle ' Create the Views for the specific panel part Dim oIsoView As DrawingView = oSheet.DrawingViews.AddBaseView(oComp, oIsoViewPoint, scale, isoViewOrientation, isoViewStyle) oIsoView.Name = oComp.Name & " ISOMETRIC VIEW" Dim oFrontView As DrawingView = oSheet.DrawingViews.AddBaseView(oComp, oFrontViewPoint, scale, frontViewOrientation, frontViewStyle) oFrontView.Name = oComp.Name & " FRONT VIEW" End Sub '*** Function To Delete All Views Sub DeleteAllViews(oSheet As Sheet) Dim oView As DrawingView For Each oView In oSheet.DrawingViews oView.Delete() Next End Sub Can any one help please
forums.autodesk.com
April 1, 2025 at 7:09 AM