FreeCAD Logo FreeCAD 1.0
  • Engleski Afrički Arapski Bjeloruski Katalonski Češki Njemački Grčki Španjolski Španjolski Baskijski Finski Filipinski Francuski Galicijski Hrvatski Mađarski Indonezijski Talijanski Japanski Kabilski Korejski Litvanski Nizozemski Norveški (Bokmal) Poljski Portugalski Portugalski Rumunjski Ruski Slovački Slovenski Srpski Švedski Turski Ukrajinski Valencijski Vijetnamski Kineski Kineski
  • Osobine
  • Preuzmi
  • Blog
  • Dokumentacija
    Sadržaj dokumentacije Prvi koraci Korisnička dokumentacija Uputstvo za korisnike FreeCAD-a Radne Površine Dokumentacija Python dokumentacija programiranja C++ coding dokumentacija Vježbe Često postavljena pitanja Privacy policy O FreeCAD-u
  • Doprinesi
    Kako pomoči Sponsor Prijavi grešku Stvorite zahtjev za povlačenjem Radna mjesta i financijranje Pravila sudjelovanja Priručnik za programere Prijevodi
  • Zajednica
    Code of conduct Forum The FPA GitHub GitLab Codeberg Mastodon Matrix IRC IRC via Webchat Gitter Discord Reddit Twitter Facebook LinkedIn Calendar
  • ♥ Donate

Donate

$
SEPA informacija
Molimo postavite svoj SEPA bankovni prijenos na:
Beneficiary: The FreeCAD project association
IBAN: BE04 0019 2896 4531
BIC/SWIFT: GEBABEBBXXX
Agencija banke: BNP Paribas Fortis
Adresa: Rue de la Station 64, 1360 Perwez, Belgium

While Stripe doesn't support monthly donations, you can still become a sponsor! Simply make a one-time donation equivalent to 12 months of support, and you'll gain access to the corresponding sponsoring tier. It's an easy and flexible way to contribute.

If you are not sure or not able to commit to a regular donation, but still want to help the project, you can do a one-time donation, of any amount.

Choose freely the amount you wish to donate one time only.

You can support FreeCAD by sponsoring it as an individual or organization through various platforms. Sponsorship provides a steady income for developers, allowing the FPA to plan ahead and enabling greater investment in FreeCAD. To encourage sponsorship, we offer different tiers, and unless you choose to remain anonymous, your name or company logo will be featured on our website accordingly.

from 1 USD / 1 EUR per month. You will not have your name displayed here, but you will have helped the project a lot anyway. Together, normal sponsors maintain the project on its feet as much as the bigger sponsors.

from 25 USD / 25 EUR per month. Your name or company name is displayed on this page.

from 100 USD / 100 EUR per month. Your name or company name is displayed on this page, with a link to your website, and a one-line description text.

from 200 USD / 200 EUR per month. Your name or company name and logo displayed on this page, with a link to your website and a custom description text. Companies that have helped FreeCAD early on also appear under Gold sponsors.

Instead of donating each month, you might find it more comfortable to make a one-time donation that, when divided by twelve, would give you right to enter a sponsoring tier. Don't hesitate to do so!

Choose freely the amount you wish to donate each month.

Please inform your forum name or twitter handle as a notein your transfer, or reach to us, so we can give you proper credits!

Sections
CurveOnMesh
Surface

Surface ExtendFace

Menu location
Surface → Extend Face
Workbenches
Surface
Default shortcut
None
Introduced in version
0.17
See also
None

Opis

The Surface ExtendFace tool extrapolates an existing face or surface at its boundaries with its local U and V parameters.

Left: original face. Right: extended face.

Upotreba

  1. Make sure you have an object that has faces. The object could be created with the Surface Workbench but it could also be any other object, for example, created with Part or PartDesign.
  2. Select the face to extend by clicking on it on the 3D View.
  3. There are several ways to invoke the tool:
    • Press the Extend Face button.
    • Select the Surface → Extend Face option from the menu.

Options

This command doesn't have any options. Either it works with the selection or not.

Properties

A Surface Extend object (Surface::Extend class) is derived from the basic Part Feature (Part::Feature class, through the Part::Spline subclass), therefore it shares all the latter's properties.

In addition to the properties described in Part Feature, the Surface Extend object has the following properties in the Property View.

Data

Base

  • PodaciFace (LinkSub): the subelement from an object that will be extended; it must be a face.
  • PodaciTolerance (FloatConstraint): it defaults to 0.1.
  • PodaciExtend UNeg (FloatConstraint): it defaults to 0.05. The ratio of the local U parameter that will be extended in the negative direction.
  • PodaciExtend UPos (FloatConstraint): it defaults to 0.05. The ratio of the local U parameter that will be extended in the positive direction.
  • PodaciExtend USymetric (Bool): it defaults to true, in which case PodaciExtend UNeg and PodaciExtend UPos will have the same value.
  • PodaciExtend VNeg (FloatConstraint): it defaults to 0.05. The ratio of the local V that will be extended in the negative direction.
  • PodaciExtend VPos (FloatConstraint): it defaults to 0.05. The ratio of the local V direction that will be extended in the positive direction.
  • PodaciExtend VSymetric (Bool): it defaults to true, in which case PodaciExtend VNeg and PodaciExtend VPos will have the same value.
  • PodaciSampleU (IntegerConstraint): it defaults to 32.
  • PodaciSampleV (IntegerConstraint): it defaults to 32.

Pogled

Base

  • PregledControl Points (Bool): it defaults to false; if set to true, it will show an overlay with the control points of the surface.

Scripting

See also: FreeCAD Scripting Basics.

The Surface Extend tool can be used in macros and from the Python Console by adding the Surface::Extend object.

  • The face to extend must be assigned as a LinkSub to the Face property of the object. It must contain only a single face.
import FreeCAD as App
import Draft

doc = App.newDocument()

a = App.Vector(-20, -20, 0)
b = App.Vector(-18, 25, 0)
c = App.Vector(60, 26, 0)
d = App.Vector(33, -20, 0)

points = [a, App.Vector(-20, -8, 0), b, c,
          App.Vector(37, 4, 0), d,
          App.Vector(-2, -18, 0), a]
obj = Draft.make_bspline(points)
doc.recompute()

if App.GuiUp:
    obj.ViewObject.Visibility = False

surf = doc.addObject("Surface::Filling", "Surface")
surf.BoundaryEdges = [(obj, "Edge1")]
doc.recompute()

# ---------------------------------------------------------
points_spl = [App.Vector(-10, 0, 2),
              App.Vector(4, 0, 7),
              App.Vector(18, 0, -5),
              App.Vector(25, 0, 0),
              App.Vector(30, 0, 0)]
aux_edge = Draft.make_bspline(points_spl)
doc.recompute()

surf.UnboundEdges = [(aux_edge, "Edge1")]
doc.recompute()

# ---------------------------------------------------------
surf_extended = doc.addObject("Surface::Extend", "Surface")
surf_extended.Face = [surf, "Face1"]
doc.recompute()


Sections
CurveOnMesh
Surface

Ova stranica je preuzeta s https://wiki.freecad.org/Surface_ExtendFace

Kontaktirajte nas!
Forum GitHub Mastodon Matrix IRC Gitter.im Discord Reddit Twitter Facebook LinkedIn

© The FreeCAD Team. Homepage image credits (top to bottom): ppemawm, r-frank, epileftric, regis, rider_mortagnais, bejant.

Ovaj projekt je podržan od: , KiCad Services Corp. i drugi sponzori

GitHubPoboljšaj ovu stranicu na GitHub-u