Jump to content

Search the Community

Showing results for tags 'pen'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Announcements
    • Announcements
    • News You Need
    • Job Board
  • Feedback
    • Roadmap
    • Wishlist - Feature and Content Requests
    • Known Issues
    • Wishes Granted / Issues Resolved
    • Forum Feedback
  • General
    • Troubleshooting
    • General Discussion
    • Architecture
    • Site Design
    • Entertainment
    • Previsualization
    • Braceworks
    • ConnectCAD
    • Energos
    • Rendering
    • Workflows
    • Buying and Selling Vectorworks Licenses
    • Hardware
  • Customization
    • AI Visualizer
    • Marionette
    • Vectorscript
    • Python Scripting
    • SDK
    • 3rd Party Services, Products and Events
    • Data Tags
  • Solids Modeling and 3D Printing
    • Subdivision
    • Solids Modeling
    • 3D Printing
  • Vectorworks in Action
  • Archive
    • Resource Sharing
    • Machine Design

Calendars

  • In-Person Training - US
  • In-Person Training - UK
  • Coffee Breaks
  • Essentials Seminars
  • Webinars
  • Community Groups

Categories

  • Knowledgebase
    • Tech Bulletins
    • Troubleshooting
    • Workflows
    • How To
    • FAQs

Categories

  • Marionette - Objects
  • Marionette - Networks
  • Marionette - Nodes
  • Marionette - Menu Commands

Product Groups

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Occupation


Homepage


Hobbies


Location


Skype

Found 3 results

  1. I don't know if anyone can help with this. I have been trying to use python scripting to create new classes by importing data from a .cvs file with the class name, lineweight, and pen colour. The script is able to import the name and linewights correctly without any problems. However, when it comes to setting the pen colour it doesn't work and either has just black and white, or semmingly random colours. And help into what i am missing here would be greatly appreciated. import csv import vs # Prompt the user to select the CSV file file_path = vs.GetFile() # Check if a file was selected if file_path: # Read the CSV file with open(file_path, mode='r') as file: csv_reader = csv.DictReader(file) for row in csv_reader: class_name = row['Class Name'] line_weight_mm = float(row['Line Thickness (mm)']) pen_r = int(row['Pen Color (R)']) pen_g = int(row['Pen Color (G)']) pen_b = int(row['Pen Color (B)']) # Convert line weight to mils line_weight_mils = round(line_weight_mm / 0.0254) # Create class and set attributes vs.NameClass(class_name) vs.SetClUseGraphic(class_name, True) vs.SetClLW(class_name, int(line_weight_mils)) # Set line weight vs.SetClPenFore(class_name, pen_r, pen_g, pen_b) vs.SetClPenBack(class_name, pen_r, pen_g, pen_b) vs.SetClFPat(class_name, 0) vs.AlrtDialog('Classes created successfully with correct line weights from the selected CSV file!') else: vs.AlrtDialog('No file was selected. Operation canceled.')
  2. I've not used the cabinet tool previously and had always modelled joinery myself. Just used it for the first time. I can't work out how to remove the line/outlines of the component parts of the cabinet. Each draw-joint, door-joint, frame-joint etc is outlined with a black pen line. I've tried creating a new class with no lines, just fill. I've tried changing the material. Nothing changes it and I'm left with every joint outlined, and the joinery looking as if it's flatpack, not bespoke handmade joinery. Any ideas?Liv’s Room 7801CF952C1A.vwxLiv’s Room 7801CF952C1A.vwx Cabinet Lines.vwx
  3. Hi I like to use the Pen (thin distance) artistic render on my proyects. It would be neat if the render could calculate the pen thikness of the whole model and not just from each element. In the example A, you can see each element generates its pen thikness individually. It only works when I add all the solids together (example B) , but normally you don't add all your solids in a complex 3D model. It would be also great if the sketch render could also calculate its pen thikness through distance. joey
×
×
  • Create New...