customizing a window
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2004-06-08
05:04 PM
- last edited on
2023-05-23
05:27 PM
by
Rubia Torres

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2004-06-08 06:51 PM
Abolsutely yes, you can save the window as a custom object, but the ability to add a parameter to it will likely require a fair bit of code modification. Many the of GS default windows work by evenly dividing the windows for mullions, into 2's or 3's. Converting that into a distance is not so easy.
Our company switched the SmartPart doors & Windows to get around such problems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2004-06-08 07:03 PM
Or, couldn't I just go into the .gsm elevation view and move the horizontal mullion?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2004-06-09 09:46 AM
If don't have many windows in your model try putting a small wall with the same size and material as the mullion at the desired place. It's not very convenient but it works


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2004-06-09 11:31 AM
Take a look at the 3D script of any window for an example.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2004-06-09 03:15 PM
! transom definition
material gs_frame_mat ! transom material def-> same as frame material
addx -a/2
addy htr
brick a,gs_frame_thk,gs_frame_thk
del 2
! end of transom definition
and add a new variable for the vertical position of the transom : htr
transom material will be the same as the frame material.
So you will get a result like this - it's ok when you render it

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2004-06-09 04:53 PM
That worked awesome, just what I needed!
However, this created one more question and one problem.
The question, how can I change the Transom Thickness to be equal to the mullion thickness?

The problem created is pasted below: the 3d window now shows the window "off-center" in the wall, while the hotspots still show it being centered in the wall on the plan.

Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2004-06-10 08:24 AM

! transom definition
material gs_frame_mat ! transom material def-> same as frame material
addx -a/2
addy htr
addz ztr
brick a,gw,gth
del 3
! end of transom definition
Thickness of the transom is the same as that of the grill - so you can control it this way. Aligning the transom to the grill turned out to be very complicated (and I'm a bit lazy

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2004-06-10 05:29 PM
Worked like a charm!