Spellcheck
This commit is contained in:
committed by
Yorik van Havre
parent
1ae2c87914
commit
87531f3560
@@ -1248,7 +1248,7 @@ class ViewProviderComponent:
|
||||
the mesh associated as the HiRes property of the host object. See
|
||||
ArchComponent.Component's properties.
|
||||
|
||||
If no shape is set in the HiRes propery, just displays the object as
|
||||
If no shape is set in the HiRes property, just displays the object as
|
||||
the Flat Lines display mode.
|
||||
|
||||
Parameters
|
||||
@@ -1454,7 +1454,7 @@ class ViewProviderComponent:
|
||||
obj: <Part::Feature>
|
||||
The object to change the color of.
|
||||
force: bool
|
||||
If true, forces the colorisation even if the two objects have very
|
||||
If true, forces the colourisation even if the two objects have very
|
||||
similar colors.
|
||||
"""
|
||||
|
||||
@@ -1509,7 +1509,7 @@ class ArchSelectionObserver:
|
||||
"""
|
||||
|
||||
def __init__(self,origin=None,watched=None,hide=True,nextCommand=None):
|
||||
"""Initalises the ArchSelectionObserver object.
|
||||
"""Initialises the ArchSelectionObserver object.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
@@ -1718,7 +1718,7 @@ class ComponentTaskPanel:
|
||||
on what the user has selected.
|
||||
|
||||
If they have selected one of the root attribute folders, it disables
|
||||
the remove button. If they have seperately selected an object in the 3D
|
||||
the remove button. If they have separately selected an object in the 3D
|
||||
view, the add button is enabled, allowing the user to add that object
|
||||
to the root attribute folder.
|
||||
|
||||
@@ -2185,7 +2185,7 @@ if FreeCAD.GuiUp:
|
||||
|
||||
|
||||
def __init__(self, parent=None, dialog=None, ptypes=[], plabels=[], *args):
|
||||
"""This method initalises the class.
|
||||
"""This method initialises the class.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
|
||||
@@ -93,9 +93,9 @@ class _CommandFloor:
|
||||
A tool for creating Arch floors.
|
||||
|
||||
Creates a floor from the objects selected by the user, if any. Excludes
|
||||
objects that appear higher in the object heirarchy, such as sites or
|
||||
buildings. If free linking is enabled in the Arch preferenecs, allows
|
||||
higher heirarchy objects to be part of floors.
|
||||
objects that appear higher in the object hierarchy, such as sites or
|
||||
buildings. If free linking is enabled in the Arch preferences, allows
|
||||
higher hierarchy objects to be part of floors.
|
||||
|
||||
Find documentation on the end user usage of Arch Floor here:
|
||||
https://wiki.freecadweb.org/Arch_Floor
|
||||
@@ -122,9 +122,9 @@ class _CommandFloor:
|
||||
"""Executed when Arch Floor is called.
|
||||
|
||||
Creates a floor from the objects selected by the user, if any. Excludes
|
||||
objects that appear higher in the object heirarchy, such as sites or
|
||||
buildings. If free linking is enabled in the Arch preferenecs, allows
|
||||
higher heirarchy objects to be part of floors.
|
||||
objects that appear higher in the object hierarchy, such as sites or
|
||||
buildings. If free linking is enabled in the Arch preferences, allows
|
||||
higher hierarchy objects to be part of floors.
|
||||
"""
|
||||
|
||||
sel = FreeCADGui.Selection.getSelection()
|
||||
@@ -172,7 +172,7 @@ class _Floor(ArchIFC.IfcProduct):
|
||||
"""
|
||||
|
||||
def __init__(self,obj):
|
||||
"""Initalises the floor.
|
||||
"""Initialises the floor.
|
||||
|
||||
The floor can be based off either a group, or a python feature. Learn more
|
||||
about groups here: https://wiki.freecadweb.org/Std_Group
|
||||
|
||||
@@ -18,9 +18,9 @@ class IfcRoot:
|
||||
"""This class defines the common methods and properties for managing IFC data.
|
||||
|
||||
IFC, or Industry Foundation Classes are a standardised way to digitally
|
||||
describe the built enviroment. The ultimate goal of IFC is to provide
|
||||
describe the built environment. The ultimate goal of IFC is to provide
|
||||
better interoperability between software that deals with the built
|
||||
enviroment. You can learn more here:
|
||||
environment. You can learn more here:
|
||||
https://technical.buildingsmart.org/standards/ifc/
|
||||
|
||||
You can learn more about the technical details of the IFC schema here:
|
||||
@@ -78,7 +78,7 @@ class IfcRoot:
|
||||
Adds the attributes specified in the object's IFC type schema, to the
|
||||
object's properties. Does not re-add them if they're already present.
|
||||
Also removes old IFC attribute properties that no longer appear in the
|
||||
schema for backwards compatability.
|
||||
schema for backwards compatibility.
|
||||
|
||||
Does so using the .addIfcAttributes() and
|
||||
.purgeUnusedIfcAttributesFromPropertiesList() methods.
|
||||
@@ -389,7 +389,7 @@ class IfcRoot:
|
||||
Removes the property representing an IFC attribute, if it does not
|
||||
appear in the schema of the IFC type provided. Also, removes the
|
||||
property if it's attribute is an enum type, presumably for backwards
|
||||
compatability.
|
||||
compatibility.
|
||||
|
||||
Learn more about IFC enums here:
|
||||
https://standards.buildingsmart.org/IFC/RELEASE/IFC4/FINAL/HTML/schema/chapter-3.htm#enumeration
|
||||
|
||||
@@ -113,7 +113,7 @@ class IfcContextUI:
|
||||
----------
|
||||
name: str
|
||||
The name of the datapoint within the RepresentationContexts
|
||||
attribute being editied.
|
||||
attribute being edited.
|
||||
label: str
|
||||
A human readable version of the name.
|
||||
|
||||
@@ -153,7 +153,7 @@ class IfcContextUI:
|
||||
----------
|
||||
name: str
|
||||
The name of the datapoint within the RepresentationContexts
|
||||
attribute being editied.
|
||||
attribute being edited.
|
||||
|
||||
Returns
|
||||
-------
|
||||
|
||||
@@ -140,7 +140,7 @@ class _Project(ArchIFC.IfcContext):
|
||||
"""
|
||||
|
||||
def __init__(self, obj):
|
||||
"""Initalises the project.
|
||||
"""Initialises the project.
|
||||
|
||||
Adds the properties of a project, and sets it's IFC type.
|
||||
|
||||
|
||||
@@ -532,7 +532,7 @@ class _Site(ArchIFC.IfcProduct):
|
||||
"""
|
||||
|
||||
def __init__(self,obj):
|
||||
"""Initalises the site.
|
||||
"""Initialises the site.
|
||||
|
||||
The site must be based off a <Part::FeaturePython> object.
|
||||
|
||||
|
||||
@@ -1508,7 +1508,7 @@ class _ViewProviderWall(ArchComponent.ViewProviderComponent):
|
||||
def __init__(self,vobj):
|
||||
"""Initialises the wall view provider.
|
||||
|
||||
Runs the Arch Component view provider initalisation, and sets the color
|
||||
Runs the Arch Component view provider initialisation, and sets the color
|
||||
to the default for walls.
|
||||
|
||||
Parameters
|
||||
|
||||
Reference in New Issue
Block a user